namespace LifePayment.Domain.Shared
{
public class WxPayOption
{
///
/// 商户ID
///
public string Mchid { get; set; }
///
/// 请求地址
///
public string Url { get; set; }
///
/// AppId
///
public string AppID { get; set; }
///
/// ApiKey
///
public string APIKey { get; set; }
///
/// 微信平台私钥
///
public string APIPrivateKey { get; set; }
///
/// 微信平台公钥
///
public string APIPublicKey { get; set; }
///
/// 商户证书序列号
///
public string SerialNo { get; set; }
///
/// 回调地址
///
public string NotifyUrl { get; set; }
}
}