using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Top.Api.Response
{
///
/// AliexpressAdAgentworkorderPlanCreateResponse.
///
public class AliexpressAdAgentworkorderPlanCreateResponse : TopResponse
{
///
/// 数据实体对象
///
[XmlElement("data")]
public string Data { get; set; }
///
/// 错误码
///
[XmlElement("result_code")]
public string ResultCode { get; set; }
///
/// 错误码描述
///
[XmlElement("result_message")]
public string ResultMessage { get; set; }
}
}