mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-11-29 18:48:50 +08:00
36 lines
504 B
C#
36 lines
504 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public enum AntDirectionVHIType
|
|
{
|
|
Vertical,
|
|
Horizontal,
|
|
Inline
|
|
}
|
|
|
|
public enum AntDirectionVHType
|
|
{
|
|
Vertical,
|
|
Horizontal
|
|
}
|
|
|
|
public enum AntFourDirectionType
|
|
{
|
|
Top,
|
|
Bottom,
|
|
Left,
|
|
Right
|
|
}
|
|
|
|
public enum AntAlignType
|
|
{
|
|
Top,
|
|
Middle,
|
|
Bottom
|
|
}
|
|
}
|