mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 13:08:23 +08:00
16 lines
339 B
C#
16 lines
339 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; }
|
|
}
|
|
} |