namespace bitforum.Constants
{
///
/// 성별을 나타내는 열거형
///
public enum Gender
{
Male = 1,
Female = 2
}
///
/// 인증 구별
///
public enum VerificationType
{
Registration, // 회원가입
ForgotPassword, // 비밀번호 재설정
ChangedEmail // 이메일 변경
}
///
/// 로그인 기록 검색기간 구분
///
public static class LoginLogType
{
public const string Today = "today";
public const string Week = "week";
public const string Month = "month";
public const string HalfYear = "halfyear";
public static readonly HashSet ValidTypes = new()
{
Today, Week, Month, HalfYear
};
}
}