using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// EcoRenthouseOtherAmount Data Structure.
///
[Serializable]
public class EcoRenthouseOtherAmount : AopObject
{
///
/// 30
///
[JsonProperty("amount")]
public string Amount { get; set; }
///
/// 费用名称
///
[JsonProperty("name")]
public string Name { get; set; }
///
/// 费用单位
///
[JsonProperty("unit")]
public string Unit { get; set; }
}
}