mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 13:37:35 +08:00
cc9e2df41c
* refactor: standardized code specification * fix: rebase conflict
19 lines
341 B
C#
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; }
|
|
}
|
|
}
|