21 lines
553 B
C#
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";
|
|
}
|
|
}
|