21 lines
423 B
C#
21 lines
423 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace PaymentSDK
|
|
{
|
|
public static class AliPayConfig
|
|
{
|
|
public static string APP_ID { get; set; }
|
|
|
|
public static string APP_PRIVATE_KEY { get; set; }
|
|
|
|
public static string ALIPAY_PUBLIC_KEY { get; set; }
|
|
|
|
public static string CHARSET { get; set; }
|
|
|
|
public static string NotifyUrl { get; set; }
|
|
|
|
}
|
|
}
|