19 lines
424 B
C#
19 lines
424 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KoubeiServindustryShopLicenseQueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KoubeiServindustryShopLicenseQueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 商户id
|
|
/// </summary>
|
|
[XmlElement("partner_id")]
|
|
public string PartnerId { get; set; }
|
|
}
|
|
}
|