NewGaoKaoApi/PaymentSDK/AliPay/Domain/KbdishVirtualDishSimplifyIn...

25 lines
622 B
C#
Raw Permalink 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;
namespace Aop.Api.Domain
{
/// <summary>
/// KbdishVirtualDishSimplifyInfo Data Structure.
/// </summary>
[Serializable]
public class KbdishVirtualDishSimplifyInfo : AopObject
{
/// <summary>
/// 外部菜品id
/// </summary>
[XmlElement("out_dish_id")]
public string OutDishId { get; set; }
/// <summary>
/// 菜品在虚拟类目中的排序值只支持数字类型如果不填默认1
/// </summary>
[XmlElement("sort")]
public string Sort { get; set; }
}
}