Files
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

30 lines
573 B
C#

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