mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 17:01:18 +08:00
16 lines
370 B
C#
16 lines
370 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AntBlazor
|
|||
|
{
|
|||
|
public static class AntTabPosition
|
|||
|
{
|
|||
|
public const string Top = "top";
|
|||
|
public const string Right = "right";
|
|||
|
public const string Bottom = "bottom";
|
|||
|
public const string Left = "left";
|
|||
|
}
|
|||
|
}
|