using System;
using System.Collections.Generic;
using System.Text;
namespace Application.Common
{
///
/// 기록 검색기간 구분
///
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 ValidTypes = new()
{
Today, Week, Month, QuarterYear, HalfYear
};
}
}