18 lines
385 B
C#
18 lines
385 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AntMerchantExpandShopCreateResponse.
|
|
/// </summary>
|
|
public class AntMerchantExpandShopCreateResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 申请单id
|
|
/// </summary>
|
|
[XmlElement("order_id")]
|
|
public string OrderId { get; set; }
|
|
}
|
|
}
|