using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// KoubeiCateringPosPaymodesortModifyModel Data Structure.
///
[Serializable]
public class KoubeiCateringPosPaymodesortModifyModel : AopObject
{
///
/// 支付方式名称列表
///
[XmlArray("pay_names")]
[XmlArrayItem("string")]
public List PayNames { get; set; }
///
/// 门店id
///
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}