mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-23 12:33:44 +08:00
chore(wxapi): 文档注释
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /wxa/modify_domain_directly 接口的请求。</para>
|
||||
/// </summary>
|
||||
public class WxaModifyDomainDirectlyRequest : WechatApiRequest, IInferable<WxaModifyDomainDirectlyRequest, WxaModifyDomainDirectlyResponse>
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置操作类型。
|
||||
/// <para>默认值:get</para>
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("action")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("action")]
|
||||
public string Action { get; set; } = "get";
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置 Request 合法域名列表。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("requestdomain")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("requestdomain")]
|
||||
public IList<string>? RequestDomainList { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置 Socket 合法域名列表。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("wsrequestdomain")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("wsrequestdomain")]
|
||||
public IList<string>? WebSocketDomainList { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置 UploadFile 合法域名列表。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("uploaddomain")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("uploaddomain")]
|
||||
public IList<string>? UploadDomainList { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置 DownloadFile 合法域名列表。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("downloaddomain")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("downloaddomain")]
|
||||
public IList<string>? DownloadDomainList { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置 UDP 合法域名列表。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("udpdomain")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("udpdomain")]
|
||||
public IList<string>? UdpDomainList { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user