mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 08:51:27 +08:00
17 lines
315 B
C#
17 lines
315 B
C#
|
using System;
|
|||
|
using Microsoft.AspNetCore.Components.Web;
|
|||
|
|
|||
|
namespace AntDesign
|
|||
|
{
|
|||
|
public class Properties
|
|||
|
{
|
|||
|
public string Value { get; set; }
|
|||
|
|
|||
|
public string Label { get; set; }
|
|||
|
|
|||
|
public bool Closable { get; set; }
|
|||
|
|
|||
|
public Action<MouseEventArgs> OnClose { get; set; }
|
|||
|
}
|
|||
|
}
|