using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// OrderExtInfo Data Structure.
///
[Serializable]
public class OrderExtInfo : AopObject
{
///
/// 键值
///
[XmlElement("ext_key")]
public string ExtKey { get; set; }
///
/// 值
///
[XmlElement("ext_value")]
public string ExtValue { get; set; }
}
}