mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
14 lines
362 B
C#
14 lines
362 B
C#
namespace Yi.Framework.WeChatPay.Options
|
|
{
|
|
public class PayOptions
|
|
{
|
|
public string AppID { get; set; }
|
|
public string MchID { get; set; }
|
|
public string Key { get; set; }
|
|
public string NotifyUrl { get; set; }
|
|
|
|
public bool IsFileConfig { get; set; } = false;
|
|
|
|
public string ConfigPath { get; set; }
|
|
}
|
|
} |