using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Top.Api.Response
{
///
/// TmallMcDeviceCircleCheckResponse.
///
public class TmallMcDeviceCircleCheckResponse : TopResponse
{
///
/// 设备相关投放计划
///
[XmlArray("results")]
[XmlArrayItem("task_dto")]
public List Results { get; set; }
///
/// TaskDtoDomain Data Structure.
///
[Serializable]
public class TaskDtoDomain : TopObject
{
///
/// 结束时间
///
[XmlElement("end_time")]
public string EndTime { get; set; }
///
/// 投放计划id
///
[XmlElement("id")]
public long Id { get; set; }
///
/// 投放计划名称
///
[XmlElement("name")]
public string Name { get; set; }
///
/// 开始时间
///
[XmlElement("start_time")]
public string StartTime { get; set; }
}
}
}