using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Top.Api.Response
{
///
/// TopApplistGetResponse.
///
public class TopApplistGetResponse : TopResponse
{
///
/// App列表信息
///
[XmlArray("app_base_infos")]
[XmlArrayItem("app_base_info")]
public List AppBaseInfos { get; set; }
}
}