AlertStatus.cs 178 B

1234567891011
  1. namespace Domain.Entities.Donations.ValueObject;
  2. public enum AlertStatus
  3. {
  4. Queued = 0,
  5. Playing = 1,
  6. Delivered = 2,
  7. Skipped = 3,
  8. Ignored = 4,
  9. Failed = 5
  10. }