ant-design-blazor/components/select/Properties.cs
XuRui 6a52961487 feat: add select component (#222)
* fix: other values may exist in FileAttributes

* feat: add javascript interop for select component

* feat: init select component

* docs: add menu item to select docs

* feat: implement dropdownRender for select component

* docs: init select docs

* fix: remove 3.0 iframe

Co-authored-by: ElderJames <shunjiey@hotmail.com>
2020-06-14 18:54:14 +08:00

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