mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-12-29 18:04:42 +08:00
feat(wxapi): 随官方更新视频号小店获取店铺基本信息接口模型
This commit is contained in:
@@ -9,6 +9,13 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
{
|
||||
public class BasicInfo
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置店铺原始 ID。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("username")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("username")]
|
||||
public string? Username { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置店铺名称。
|
||||
/// </summary>
|
||||
@@ -29,6 +36,13 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
[Newtonsoft.Json.JsonProperty("subject_type")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("subject_type")]
|
||||
public string SubjectType { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置店铺状态。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("status")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("status")]
|
||||
public string Status { get; set; } = default!;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user