using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Top.Api.Response
{
///
/// WdkAiotOrgPropParentResponse.
///
public class WdkAiotOrgPropParentResponse : TopResponse
{
///
/// 机构树json
///
[XmlElement("data")]
public string 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; }
}
}