xm
2020-12-14 d6fb0646531172f23648441c224cdcccd721b894
ZigbeeApp/Shared/Common/ResponseEntity/GetAppVersionCode.cs
New file
@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
namespace Shared.Common.ResponseEntity
{
    [Serializable]
    public class GetAppVersionCode
    {
        public List<GetAppVersionCodeOBJ> Results = new List<GetAppVersionCodeOBJ> { };
        public int ResultCount;
    }
    [Serializable]
    public class GetAppVersionCodeOBJ
    {
        public string ReleaseNotes { get; set; }
        public string Version { get; set; }
    }
}