mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 04:58:05 +08:00
16 lines
435 B
C#
16 lines
435 B
C#
|
using System;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using Microsoft.AspNetCore.Components;
|
|||
|
using Microsoft.AspNetCore.Components.Web;
|
|||
|
|
|||
|
namespace AntDesign
|
|||
|
{
|
|||
|
public class MentionsTextareaTemplateOptions
|
|||
|
{
|
|||
|
public string Value { get; set; }
|
|||
|
public ForwardRef RefBack { get; set; }
|
|||
|
public Action<KeyboardEventArgs> OnKeyDown { get; set; }
|
|||
|
public Func<ChangeEventArgs, Task> OnInput { get; set; }
|
|||
|
}
|
|||
|
}
|