BotSharp/src/Infrastructure/BotSharp.Abstraction/Messaging/Enums/AlignmentEnum.cs
2025-10-10 11:10:32 +08:00

21 lines
553 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BotSharp.Abstraction.Messaging.Enums
{
public static class AlignmentEnum
{
public const string TopLeft = "topLeft";
public const string BottomLeft = "bottomLeft";
public const string TopRight = "topRight";
public const string BottomRight = "bottomRight";
public const string TopCenter = "topCenter";
public const string BottomCenter = "bottomCenter";
}
}