namespace Domain.Entities.Payments.ValueObject; public enum PaymentStatus { Pending = 0, Paid = 1, Cancelled = 2, Failed = 3, WaitingDeposit = 4 }