27 lines
594 B
C#
27 lines
594 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// ClauseTerm Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ClauseTerm : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 说明描述内容
|
|
/// </summary>
|
|
[XmlArray("descriptions")]
|
|
[XmlArrayItem("string")]
|
|
public List<string> Descriptions { get; set; }
|
|
|
|
/// <summary>
|
|
/// 说明title
|
|
/// </summary>
|
|
[XmlElement("title")]
|
|
public string Title { get; set; }
|
|
}
|
|
}
|