using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// FilesGetResponse. /// public class FilesGetResponse : TopResponse { /// /// results /// [XmlArray("results")] [XmlArrayItem("top_download_record_do")] public List Results { get; set; } /// /// TopDownloadRecordDoDomain Data Structure. /// [Serializable] public class TopDownloadRecordDoDomain : TopObject { /// /// 文件创建时间 /// [XmlElement("created")] public string Created { get; set; } /// /// 下载链接状态。1:未下载。2:已下载 /// [XmlElement("status")] public long Status { get; set; } /// /// 下载链接 /// [XmlElement("url")] public string Url { get; set; } } } }