SearchDateType.cs 536 B

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