forked from siteserver/cms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntegrationPayConfig.cs
More file actions
38 lines (34 loc) · 1.41 KB
/
IntegrationPayConfig.cs
File metadata and controls
38 lines (34 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using Newtonsoft.Json;
namespace SiteServer.CMS.Model
{
[JsonObject(MemberSerialization.OptOut)]
public class IntegrationPayConfig
{
public bool IsAlipayPc { get; set; }
public bool AlipayPcIsMApi { get; set; }
public string AlipayPcAppId { get; set; }
public string AlipayPcPid { get; set; }
public string AlipayPcMd5 { get; set; }
public string AlipayPcPublicKey { get; set; }
public string AlipayPcPrivateKey { get; set; }
public bool IsAlipayMobi { get; set; }
public bool AlipayMobiIsMApi { get; set; }
public string AlipayMobiAppId { get; set; }
public string AlipayMobiPid { get; set; }
public string AlipayMobiMd5 { get; set; }
public string AlipayMobiPublicKey { get; set; }
public string AlipayMobiPrivateKey { get; set; }
public bool IsWeixin { get; set; }
public string WeixinAppId { get; set; }
public string WeixinAppSecret { get; set; }
public string WeixinMchId { get; set; }
public string WeixinKey { get; set; }
public bool IsJdpay { get; set; }
public string JdpayMerchant { get; set; }
public string JdpayUserId { get; set; }
public string JdpayMd5Key { get; set; }
public string JdpayDesKey { get; set; }
public string JdpayPublicKey { get; set; }
public string JdpayPrivateKey { get; set; }
}
}