Files
GmRelayBot/src/GmRelay.Bot/Domain/SessionStatus.cs
T

10 lines
275 B
C#

namespace GmRelay.Bot.Domain;
public static class SessionStatus
{
public const string Planned = "Planned";
public const string ConfirmationSent = "ConfirmationSent";
public const string Confirmed = "Confirmed";
public const string Cancelled = "Cancelled";
}