namespace Application.Common; /// /// 충전 내역(/charge-logs) 카테고리 필터 /// public static class WalletLogCategory { public const string All = "all"; public const string Charge = "charge"; public const string Earn = "earn"; public const string Spend = "spend"; public const string Refund = "refund"; public static readonly HashSet ValidTypes = new() { All, Charge, Earn, Spend, Refund }; }