添加项目文件。

This commit is contained in:
glz
2026-06-01 13:42:40 +08:00
parent 435474c5fe
commit bba985f937
56 changed files with 3758 additions and 0 deletions

View File

@ -0,0 +1,17 @@
namespace QYZH.InteractiveMagazine.Models.Settings;
/// <summary>
/// 微信小程序配置
/// </summary>
public class WeChatSettings
{
/// <summary>
/// 应用Id
/// </summary>
public string? AppId { get; set; }
/// <summary>
/// 应用密钥
/// </summary>
public string? AppSecret { get; set; }
}