using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// InvoiceInfo Data Structure. /// [Serializable] public class InvoiceInfo : AopObject { /// /// 开票内容 注:json数组格式 /// [JsonProperty("details")] public string Details { get; set; } /// /// 开票关键信息 /// [JsonProperty("key_info")] public InvoiceKeyInfo KeyInfo { get; set; } } }