using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Top.Api.Response
{
///
/// JushitaJmsTopicsGetResponse.
///
public class JushitaJmsTopicsGetResponse : TopResponse
{
///
/// 错误码
///
[XmlElement("result_code")]
public string ResultCode { get; set; }
///
/// 错误信息
///
[XmlElement("result_message")]
public string ResultMessage { get; set; }
///
/// topic列表
///
[XmlArray("results")]
[XmlArrayItem("string")]
public List Results { get; set; }
}
}