19 lines
448 B
C#
19 lines
448 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// KoubeiRetailTopinstanceQueryModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class KoubeiRetailTopinstanceQueryModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 券或者电子DM单(VOUCHER、DM)
|
||
/// </summary>
|
||
[XmlElement("instance_type")]
|
||
public string InstanceType { get; set; }
|
||
}
|
||
}
|