mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
35 lines
503 B
C#
35 lines
503 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AntBlazor
|
|
{
|
|
public enum AntDirectionVHIType
|
|
{
|
|
vertical,
|
|
horizontal,
|
|
inline
|
|
}
|
|
|
|
public enum AntDirectionVHType
|
|
{
|
|
vertical,
|
|
horizontal
|
|
}
|
|
|
|
public enum AntFourDirectionType
|
|
{
|
|
top,
|
|
bottom,
|
|
left,
|
|
right
|
|
}
|
|
|
|
public enum AntAlignType
|
|
{
|
|
top,
|
|
middle,
|
|
bottom
|
|
}
|
|
} |