1234567891011121314151617181920 |
- using LJLib.Net.SPI.Com;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace LJProxy.Models
- {
- public class GetUpdatePkgRequest : LJRequest
- {
-
- }
- public class GetUpdatePkgResponse : LJResponse
- {
- public string Version { get; set; }
- public byte[] ApkData { get; set; }
- public string Checksum { get; set; }
- }
- }
|