namespace SKIT.FlurlHttpClient.Wechat.Api.Models { /// /// 表示 [POST] /wxaapi/wxaembedded/add_embedded 接口的请求。 /// public class WxaApiWxaEmbeddedAddEmbeddedRequest : WechatApiRequest, IInferable { /// /// 获取或设置小程序 AppId。 /// [Newtonsoft.Json.JsonProperty("appid")] [System.Text.Json.Serialization.JsonPropertyName("appid")] public string AppId { get; set; } = string.Empty; /// /// 获取或设置申请理由。 /// [Newtonsoft.Json.JsonProperty("apply_reason")] [System.Text.Json.Serialization.JsonPropertyName("apply_reason")] public string? ApplyReason { get; set; } } }