using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// Contract Data Structure.
///
[Serializable]
public class Contract : AopObject
{
///
/// 合约文本内容
///
[XmlElement("text")]
public string Text { get; set; }
///
/// 合约标题
///
[XmlElement("title")]
public string Title { get; set; }
///
/// 合约类型
///
[XmlElement("type")]
public string Type { get; set; }
}
}