mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-19 07:29:12 +08:00
55 lines
2.0 KiB
C#
55 lines
2.0 KiB
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// <para>表示 [POST] /wxa/modify_domain 接口的请求。</para>
|
|||
|
/// </summary>
|
|||
|
public class WxaModifyDomainRequest : WechatApiRequest
|
|||
|
{
|
|||
|
/// <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; }
|
|||
|
}
|
|||
|
}
|