using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// Paragraph Data Structure. /// [Serializable] public class Paragraph : AopObject { /// /// 图片列表 /// [JsonProperty("pictures")] public List Pictures { get; set; } /// /// 正文介绍 /// [JsonProperty("text")] public string Text { get; set; } } }