SearchDateType.cs 598 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Application.Common
  5. {
  6. /// <summary>
  7. /// 기록 검색기간 구분
  8. /// </summary>
  9. public static class SearchDateType
  10. {
  11. public const string Today = "today";
  12. public const string Week = "week";
  13. public const string Month = "month";
  14. public const string QuarterYear = "quarter";
  15. public const string HalfYear = "half";
  16. public static readonly HashSet<string> ValidTypes = new()
  17. {
  18. Today, Week, Month, QuarterYear, HalfYear
  19. };
  20. }
  21. }