using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// EcoRenthouseOtherAmount Data Structure. /// [Serializable] public class EcoRenthouseOtherAmount : AopObject { /// /// 30 /// [XmlElement("amount")] public string Amount { get; set; } /// /// 费用名称 /// [XmlElement("name")] public string Name { get; set; } /// /// 费用单位 /// [XmlElement("unit")] public string Unit { get; set; } } }