-
Notifications
You must be signed in to change notification settings - Fork 1
/
Constant.cs
33 lines (30 loc) · 1.45 KB
/
Constant.cs
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
using Newtonsoft.Json;
namespace Foundation.Commerce.Payment.Alepay
{
public class Constant
{
//Parameters name
public const string TransactionCode = nameof(TransactionCode);
public const string OrderCode = nameof(OrderCode);
public const string OrderAmount = nameof(OrderAmount);
public const string Currency = nameof(Currency);
public const string BuyerEmail = nameof(BuyerEmail);
public const string BuyerPhone = nameof(BuyerPhone);
public const string BuyerName = nameof(BuyerName);
public const string CardNumber = nameof(CardNumber);
public const string CardType = nameof(CardType);
public const string TransactionStatus = nameof(TransactionStatus);
public const string Message = nameof(Message);
public const string Installment = nameof(Installment);
public const string Is3D = nameof(Is3D);
public const string Month = nameof(Month);
public const string BankCode = nameof(BankCode);
public const string BankName = nameof(BankName);
public const string TransactionTime = nameof(TransactionTime);
public const string SuccessTime = nameof(SuccessTime);
public const string BankHotline = nameof(BankHotline);
public const string MerchantFee = nameof(MerchantFee);
public const string PayerFee = nameof(PayerFee);
public const string ErrorMessages = nameof(ErrorMessages);
}
}