ant-design-blazor/components/select/Properties.cs

19 lines
376 B
C#
Raw Normal View History

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; }
}
}