namespace Atomx.Common.Configuration
{
///
/// 系统基本配置
///
public class GeneralConfig
{
///
/// 名称
///
public string Name { get; set; } = string.Empty;
///
/// 网站的LOGO
///
public string Logo { get; set; } = string.Empty;
///
/// Meta 关键词
///
public string Keywords { get; set; } = string.Empty;
///
/// Meta 介绍
///
public string Description { get; set; } = string.Empty;
///
/// 域名
///
public string Domain { get; set; } = string.Empty;
///
/// 联系我们邮箱
///
public string ContactEmail { get; set; } = string.Empty;
///
/// 是否启用登录错误
///
public bool EnableLoginErrorLock { get; set; }
///
/// 登录错误最大上限
///
public int LoginErrorMaxUpper { get; set; } = 5;
///
/// 登录错误锁定时长
///
public int LoginErrorLockDuration { get; set; } = 30;
///
/// 是否多个法定货币钱包
///
public bool MultipleLegalTenderWallets { get; set; } = false;
}
}