HDL Home App 第二版本 旧平台金堂用 正在使用
hxb
2022-08-30 25429f085093d89d543a0b90e30d0d62d1b7dac9
ZigbeeApp/Shared/Common/ResponseEntity/ApkInfoOBJ.cs
New file
@@ -0,0 +1,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; }
    }
}