using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEcoMycarMaintainShopQueryModel Data Structure.
///
[Serializable]
public class AlipayEcoMycarMaintainShopQueryModel : AopObject
{
///
/// 外部门店编号(与shop_id二选一,不能都为空)
///
[XmlElement("out_shop_id")]
public string OutShopId { get; set; }
///
/// 车主平台门店编号(与out_shop_id二选一,不能都为空)
///
[XmlElement("shop_id")]
public long ShopId { get; set; }
}
}