using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayOverseasTravelContentCountSyncModel Data Structure.
///
[Serializable]
public class AlipayOverseasTravelContentCountSyncModel : AopObject
{
///
/// 计数信息列表
///
[XmlArray("count_infos")]
[XmlArrayItem("count_info")]
public List CountInfos { get; set; }
}
}