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