using System; using System.Collections.Generic; namespace Shared.Common.ResponseEntity { //[Serializable] public class ApkInfoRes { public int PageIndex; public int PageSize; public int TotalCount; public int TotalPages; public bool HasPreviousPage; public bool HasNextPage; public List pageData = new List { }; } /// /// 下载apk /// [Serializable] public class ApkInfoOBJ { public string Name { get; set; } public string FirmwareVersion { get; set; } public string Remarks { get; set; } public string DistributedMark { get; set; } public string Id { get; set; } public string CreatedOnUtc { get; set; } } }