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