namespace New_College { public static class ThridConfig { public static string secretKey { get; set; } public static string Url { get; set; } } /// /// /// public static class SHanDongTel { public static string Tel { get; set; } public static string Mail { get; set; } } /// /// 邮箱配置 /// public static class MailKitConfig { /// /// 发送邮件人别名 /// public static string DisplayName { get; set; } /// /// 发送邮件id /// public static string MailAddress { get; set; } public static bool IsSsl { get; set; } /// /// /// public static string MailServer { get; set; } public static int SmtpPort { get; set; } public static string Password { get; set; } } public static class WeixinConfig { /// /// 微信appid /// public static string Appid { get; set; } /// /// 微信安全码 /// public static string Secret { get; set; } /// /// 商户ID /// public static string MCHID { get; set; } /// /// 商户key /// public static string KEY { get; set; } public static string APIv3Key { get; set; } /// /// /// public static string PrivateKey { get; set; } /// /// /// public static string SerialNumber { get; set; } /// /// 支付回调URL /// public static string NotifyUrl { get; set; } } }