namespace LittleShop.Enums; public enum PaymentStatus { Pending = 0, PartiallyPaid = 1, Paid = 2, Overpaid = 3, Expired = 4, Cancelled = 5, Processing = 6, Completed = 7, Failed = 8 }