10 lines
247 B
C#
10 lines
247 B
C#
namespace GmRelay.Shared.Domain;
|
|
|
|
public static class ParticipantRegistrationStatus
|
|
{
|
|
public const string Active = "Active";
|
|
public const string Waitlisted = "Waitlisted";
|
|
|
|
public static readonly string[] All = [Active, Waitlisted];
|
|
}
|