using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// NewsfeedMediaImg Data Structure. /// [Serializable] public class NewsfeedMediaImg : AopObject { /// /// 图片高度 /// [JsonProperty("height")] public string Height { get; set; } /// /// 图片地址 /// [JsonProperty("src")] public string Src { get; set; } /// /// 图片宽度 /// [JsonProperty("width")] public string Width { get; set; } } }