mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 21:17:36 +08:00
161aef5507
* Add dynamic async loading of mentions along with more tests. * Make symbol a parameter
12 lines
213 B
C#
12 lines
213 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class MentionsDynamicOption
|
|
{
|
|
public string Value { get; set; }
|
|
|
|
public RenderFragment Display { get; set; }
|
|
}
|
|
}
|