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