ant-design-blazor/components/checkbox/CheckBoxOption.cs

19 lines
341 B
C#
Raw Normal View History

2020-01-11 01:10:05 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace AntDesign
2020-01-11 01:10:05 +08:00
{
public class CheckboxOption
2020-01-11 01:10:05 +08:00
{
public string Label { get; set; }
2020-01-11 01:10:05 +08:00
public string Value { get; set; }
public bool Checked { get; set; }
public bool Disabled { get; set; }
2020-01-11 01:10:05 +08:00
}
}