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