feat: add session capacity waitlist
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
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];
|
||||
}
|
||||
Reference in New Issue
Block a user