mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
698ae84ab1
* feat(module: checkbox): support generic value * fix tests * fix test * fix name * fix tests * fix tests
19 lines
349 B
C#
19 lines
349 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class CheckboxOption<TValue>
|
|
{
|
|
public string Label { get; set; }
|
|
|
|
public TValue Value { get; set; }
|
|
|
|
public bool Checked { get; set; }
|
|
|
|
public bool Disabled { get; set; }
|
|
}
|
|
}
|