New file |
| | |
| | | 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<ApkInfoOBJ> pageData = new List<ApkInfoOBJ> { }; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 下载apk |
| | | /// </summary> |
| | | [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; } |
| | | } |
| | | } |