WithdrawalStatus.cs 155 B

123456789
  1. namespace Domain.Entities.Donations.ValueObject;
  2. public enum WithdrawalStatus
  3. {
  4. Pending = 0,
  5. Processing = 1,
  6. Completed = 2,
  7. Rejected = 3
  8. }