using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// TmcGroupsGetResponse. /// public class TmcGroupsGetResponse : TopResponse { /// /// dasdasd /// [XmlArray("groups")] [XmlArrayItem("tmc_group")] public List Groups { get; set; } /// /// 分组总数 /// [XmlElement("total_results")] public long TotalResults { get; set; } } }