mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-06 05:57:39 +08:00
41077bc2fb
* select-rewritten select-rewritten * modul: select - update 1 * select-update2 * select-update3 * select-update 4 * feat: append label tag & auto tokenization * fix: conflict in drpdown demo Co-authored-by: Lars Diederich <diederich@evodata.de> Co-authored-by: ElderJames <shunjiey@hotmail.com>
19 lines
376 B
C#
19 lines
376 B
C#
using System;
|
|
using Microsoft.AspNetCore.Components.Web;
|
|
|
|
namespace AntDesign
|
|
{
|
|
#pragma warning disable 1591 // Disable missing XML comment
|
|
|
|
public class Properties
|
|
{
|
|
public string Value { get; set; }
|
|
|
|
public string Label { get; set; }
|
|
|
|
public bool Closable { get; set; }
|
|
|
|
public Action<MouseEventArgs> OnClose { get; set; }
|
|
}
|
|
}
|