NewGaoKaoApi/PaymentSDK/AliPay/Domain/KbdishVirtualShopSimplifyIn...

33 lines
895 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// KbdishVirtualShopSimplifyInfo Data Structure.
/// </summary>
[Serializable]
public class KbdishVirtualShopSimplifyInfo : AopObject
{
/// <summary>
/// 门店下虚拟类目信息
/// </summary>
[XmlArray("catetory_list")]
[XmlArrayItem("kbdish_virtual_catetory_simplify_info")]
public List<KbdishVirtualCatetorySimplifyInfo> CatetoryList { get; set; }
/// <summary>
/// 外部门店id和shop_id做为二选一必填
/// </summary>
[XmlElement("out_shop_id")]
public string OutShopId { get; set; }
/// <summary>
/// 口碑门店id
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}