NewGaoKaoApi/PaymentSDK/AliPay/Domain/KbdishGroupSimplifyInfo.cs

33 lines
979 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>
/// KbdishGroupSimplifyInfo Data Structure.
/// </summary>
[Serializable]
public class KbdishGroupSimplifyInfo : AopObject
{
/// <summary>
/// 套餐组明细
/// </summary>
[XmlArray("group_detail_list")]
[XmlArrayItem("kbdish_group_detail_simplify_info")]
public List<KbdishGroupDetailSimplifyInfo> GroupDetailList { get; set; }
/// <summary>
/// 套餐组规则fix是否固定套餐truefalse不是。max_count最大可选数量min_count最小可选数量。
/// </summary>
[XmlElement("group_rule")]
public string GroupRule { get; set; }
/// <summary>
/// 套餐组名称,固定组可不传
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
}
}