using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Core.Const
{
///
/// 分类常量
///
public class CateGoryConst
{
///
/// 邮箱基础
///
public const string CONFIG_SYS_BaseExmail = "Sys_BaseExmail";
///
/// 邮箱配置
///
public const string CONFIG_SYS_RegExmail = "Sys_RegExmail";
}
///
/// 配置Key常量
///
public class SysConfigConst
{
///
/// 邮箱SMTP地址
///
public const string SMTP_Server = "smtpServer";
///
/// 邮箱SMTP端口
///
public const string SMTP_Port = "smtpPort";
///
/// 邮箱SMTP账号
///
public const string SMTP_User = "smtpUser";
///
/// 邮箱SMTP密码
///
public const string SMTP_Pass = "smtpPass";
///
/// 邮箱标题
///
public const string SMTP_Title = "smtpTitle";
///
/// 邮箱内容标题
///
public const string SMTP_ContentTitle = "smtpContentTitle";
///
/// 邮箱内容标题
///
public const string SMTP_RegUser = "smtpRegUser";
}
}