Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/EcoRenthouseOtherAmount.cs

30 lines
573 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
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; }
}
}