| 123456789101112131415161718 |
- namespace Application.Common;
- /// <summary>
- /// 충전 내역(/charge-logs) 카테고리 필터
- /// </summary>
- 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<string> ValidTypes = new()
- {
- All, Charge, Earn, Spend, Refund
- };
- }
|