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