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