mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
14 lines
289 B
C#
14 lines
289 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace AntDesign
|
|||
|
{
|
|||
|
public static class DescriptionsSize
|
|||
|
{
|
|||
|
public const string Default = "default";
|
|||
|
public const string Middle = "middle";
|
|||
|
public const string Small = "small";
|
|||
|
}
|
|||
|
}
|