27 lines
579 B
C#
27 lines
579 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// Paragraph Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class Paragraph : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 图片列表
|
|
/// </summary>
|
|
[XmlArray("pictures")]
|
|
[XmlArrayItem("picture")]
|
|
public List<Picture> Pictures { get; set; }
|
|
|
|
/// <summary>
|
|
/// 正文介绍
|
|
/// </summary>
|
|
[XmlElement("text")]
|
|
public string Text { get; set; }
|
|
}
|
|
}
|