23
This commit is contained in:
40
MyCode.Project.Infrastructure/Config/MySysConfig.cs
Normal file
40
MyCode.Project.Infrastructure/Config/MySysConfig.cs
Normal file
@@ -0,0 +1,40 @@
|
||||
using System;
|
||||
|
||||
namespace MyCode.Project.Infrastructure.Config
|
||||
{
|
||||
/// <summary>
|
||||
/// 系统配置
|
||||
/// </summary>
|
||||
public class MySysConfig
|
||||
{
|
||||
/// <summary>
|
||||
/// 商家ID
|
||||
/// </summary>
|
||||
public Guid MerchantId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否开发模式
|
||||
/// </summary>
|
||||
public bool IsDev { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 发送验证码 接口地址
|
||||
/// </summary>
|
||||
public string SendVerifyCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 发送短信 接口地址
|
||||
/// </summary>
|
||||
public string SendSms { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 七牛云 接口地址
|
||||
/// </summary>
|
||||
public string QiNiuCloudApiUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 招行支付回调域名
|
||||
/// </summary>
|
||||
public string CmpPayCallbackDomain { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user