mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
6a52961487
* 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>
19 lines
362 B
C#
19 lines
362 B
C#
namespace AntDesign
|
|
{
|
|
public class LabeledValue
|
|
{
|
|
public string Key { get; }
|
|
|
|
public object Label { get; }
|
|
|
|
public bool Disabled { get; }
|
|
|
|
public LabeledValue(string key, object label, bool disabled = false)
|
|
{
|
|
Key = key;
|
|
Label = label;
|
|
Disabled = disabled;
|
|
}
|
|
}
|
|
}
|