using System; using System.Collections.Generic; namespace SKIT.FlurlHttpClient.Wechat.Api.Models { /// /// 表示 [POST] /componenttcb/dbgetacl 接口的请求。 /// public class ComponentTcbDbGetACLRequest : WechatApiRequest { /// /// 获取或设置第三方平台 AccessToken。 /// [Newtonsoft.Json.JsonIgnore] [System.Text.Json.Serialization.JsonIgnore] public string ComponentAccessToken { get; set; } = string.Empty; /// /// 获取或设置环境 ID。 /// [Newtonsoft.Json.JsonProperty("env")] [System.Text.Json.Serialization.JsonPropertyName("env")] public string EnvironmentId { get; set; } = string.Empty; /// /// 获取或设置集合名称。 /// [Newtonsoft.Json.JsonProperty("collection_name")] [System.Text.Json.Serialization.JsonPropertyName("collection_name")] public string CollectionName { get; set; } = string.Empty; } }