Files
juipnet/Services/Hncore.Pass.PaymentCenter/Model/MchInfo.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

18 lines
439 B
C#

namespace Hncore.Pass.PaymentCenter.Model
{
public class MchInfo
{
/// <summary>
/// 连锁商户号
/// </summary>
public string GroupNo { get; set; } = "";
public string MchId { get; set; } = "";
public string Key { get; set; } = "";
public string RSAPrivateKey { get; set; } = "";
public string RSAPublicKey { get; set; } = "";
}
}