| 1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Application.Common
- {
- /// <summary>
- /// 기록 검색기간 구분
- /// </summary>
- public static class SearchDateType
- {
- public const string Today = "today";
- public const string Week = "week";
- public const string Month = "month";
- public const string QuarterYear = "quarter";
- public const string HalfYear = "half";
- public static readonly HashSet<string> ValidTypes = new()
- {
- Today, Week, Month, QuarterYear, HalfYear
- };
- }
- }
|