using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Top.Api.Response
{
///
/// WdkRexWotPropertySetResponse.
///
public class WdkRexWotPropertySetResponse : TopResponse
{
///
/// 数据寄过
///
[XmlElement("data")]
public bool Data { get; set; }
///
/// 错误码
///
[XmlElement("msg_code")]
public string MsgCode { get; set; }
///
/// 错误信息
///
[XmlElement("msg_info")]
public string MsgInfo { get; set; }
///
/// 请求结果
///
[XmlElement("succeed")]
public bool Succeed { get; set; }
}
}