mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 17:01:18 +08:00
13 lines
296 B
C#
13 lines
296 B
C#
|
using System.Text.Json.Serialization;
|
|||
|
|
|||
|
namespace AntDesign.Select.Internal
|
|||
|
{
|
|||
|
internal class ValueLabel<TItemValue>
|
|||
|
{
|
|||
|
[JsonPropertyName("value")]
|
|||
|
public TItemValue Value { get; set; }
|
|||
|
[JsonPropertyName("label")]
|
|||
|
public string Label { get; set; }
|
|||
|
}
|
|||
|
}
|