using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayMarketingDataDashboardApplyModel Data Structure.
///
[Serializable]
public class AlipayMarketingDataDashboardApplyModel : AopObject
{
///
/// 仪表盘ID列表
///
[XmlArray("dashboard_ids")]
[XmlArrayItem("string")]
public List DashboardIds { get; set; }
}
}