using System; namespace SKIT.FlurlHttpClient.Wechat.Api.Models { /// /// 表示 [POST] /merchant/common/upload_img 接口的响应。 /// [Obsolete("相关接口或字段于 2020-10-01 下线。")] public class MerchantCommonUploadImageResponse : WechatApiResponse { /// /// 获取或设置图片 URL。 /// [Newtonsoft.Json.JsonProperty("image_url")] [System.Text.Json.Serialization.JsonPropertyName("image_url")] public string ImageUrl { get; set; } = default!; } }