mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 21:47:38 +08:00
b8a6062f6f
* rename to header style * fix selection and action * delete useless style Co-authored-by: James Yeung <shunjiey@hotmail.com>
13 lines
391 B
C#
13 lines
391 B
C#
namespace AntDesign
|
|
{
|
|
public sealed class TableSize : EnumValue<TableSize>
|
|
{
|
|
public static readonly TableSize Middle = new TableSize(nameof(Middle).ToLowerInvariant(), 1);
|
|
public static readonly TableSize Small = new TableSize(nameof(Small).ToLowerInvariant(), 2);
|
|
|
|
private TableSize(string name, int value) : base(name, value)
|
|
{
|
|
}
|
|
}
|
|
}
|