黄学彪
2020-09-22 ade5917841b0fdcb1df7353ef7c56b1a1bdc9282
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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; }
    }
}