mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 21:17:36 +08:00
73c405d70d
* 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>
17 lines
376 B
C#
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";
|
|
}
|
|
}
|