namespace SPMS.Domain.Enums; /// /// 결제 상태 (Payment.status) /// public enum PaymentStatus : byte { Completed = 0, Cancelled = 1, Refunded = 2 }