ant-design-blazor/components/carousel/CarouselDotPosition.cs
Henry.zhang 73c405d70d refactor: add grid and carousel demo (#187)
* refactor: carousel demo

* fix: remove the ItemGroup from doc projects

* refactor: grid deom

* fix: remove itemgroup from project file antdesign.docs.csproject

* refactor: remove ant prefix

Co-authored-by: ElderJames <shunjiey@hotmail.com>
2020-06-07 00:20:28 +08:00

17 lines
376 B
C#

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