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;
///
/// facebook页面地址
///
public string FacebookUrl { get; set; } = string.Empty;
///
/// 推特页面地址
///
public string TwitterUrl { get; set; } = string.Empty;
///
/// YouTube页面地址
///
public string YouTubeUrl { get; set; } = string.Empty;
///
/// Instagram页面地址
///
public string InstagramUrl { get; set; } = string.Empty;
}
}