mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
15 lines
290 B
C#
15 lines
290 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Text;
|
|
using Ardalis.SmartEnum;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public static class TransferDirection
|
|
{
|
|
public const string Left = "left";
|
|
public const string Right = "right";
|
|
}
|
|
}
|