添加微信支付模块

This commit is contained in:
橙子
2022-05-14 17:45:17 +08:00
parent 93180faa23
commit 208c93bc8f
15 changed files with 1382 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
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; }
}
}