NewGaoKaoApi/PaymentSDK/AliPay/Domain/MItemInfo.cs

25 lines
594 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>
/// MItemInfo Data Structure.
/// </summary>
[Serializable]
public class MItemInfo : AopObject
{
/// <summary>
/// 商品id
/// </summary>
[XmlElement("item_id")]
public string ItemId { get; set; }
/// <summary>
/// item_id字段说明类型目前支持枚举菜品DISH注意菜品必须为单品菜品信息
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}