NewGaoKaoApi/PaymentSDK/AliPay/Domain/KbdishMaterialSimplifyInfo.cs

33 lines
909 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// KbdishMaterialSimplifyInfo Data Structure.
/// </summary>
[Serializable]
public class KbdishMaterialSimplifyInfo : AopObject
{
/// <summary>
/// 加料id列表加料先通过加料创建接口拿到id
/// </summary>
[XmlArray("material_detail_list")]
[XmlArrayItem("string")]
public List<string> MaterialDetailList { get; set; }
/// <summary>
/// 加料组规格max_count最大可选数量min_count最小可选数量
/// </summary>
[XmlElement("material_rule")]
public string MaterialRule { get; set; }
/// <summary>
/// 加料组名称
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
}
}