ant-design-blazor/components/carousel/AntCarouselDotPosition.cs
2020-05-29 00:33:49 +08:00

17 lines
379 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AntDesign
{
public static class AntCarouselDotPosition
{
public const string Top = "Top";
public const string Bottom = "Bottom";
public const string Left = "Left";
public const string Right = "Right";
}
}