初始提交
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// Paragraph Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class Paragraph : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 图片列表
|
||||
/// </summary>
|
||||
[JsonProperty("pictures")]
|
||||
|
||||
public List<Picture> Pictures { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 正文介绍
|
||||
/// </summary>
|
||||
[JsonProperty("text")]
|
||||
public string Text { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user