using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Model.Models.Config
{
public class PasswordPolicyConfig
{
///
/// 是否启用密码过期策略
///
public bool EnablePasswordExpire { get; set; } = true;
///
/// 密码有效期(天)
///
public int PasswordExpireDays { get; set; } = 90;
///
/// 提前提醒天数
///
public int RemindBeforeExpireDays { get; set; } = 7;
}
}