ant-design-blazor/components/checkbox/CheckBoxOption.cs
James Yeung cc9e2df41c refactor: standardized code specification (#82)
* refactor: standardized code specification

* fix: rebase conflict
2020-04-23 17:13:56 +08:00

19 lines
341 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace AntBlazor
{
public class CheckBoxOption
{
public string Label { get; set; }
public string Value { get; set; }
public bool Checked { get; set; }
public bool Disabled { get; set; }
}
}