using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// QueryInstBillDetail Data Structure. /// [Serializable] public class QueryInstBillDetail : AopObject { /// /// 明细key /// [JsonProperty("key")] public string Key { get; set; } /// /// 明细描述 /// [JsonProperty("name")] public string Name { get; set; } /// /// 明细对应值 /// [JsonProperty("value")] public string Value { get; set; } } }