WalletLogCategory.cs 480 B

123456789101112131415161718
  1. namespace Application.Common;
  2. /// <summary>
  3. /// 충전 내역(/charge-logs) 카테고리 필터
  4. /// </summary>
  5. public static class WalletLogCategory
  6. {
  7. public const string All = "all";
  8. public const string Charge = "charge";
  9. public const string Earn = "earn";
  10. public const string Spend = "spend";
  11. public const string Refund = "refund";
  12. public static readonly HashSet<string> ValidTypes = new()
  13. {
  14. All, Charge, Earn, Spend, Refund
  15. };
  16. }