using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IOTContainer.Model { public class GetAppPackageModel { //app版本号 public string appVersion { get; set; } //app下载路径 public string appPackageUrl { get; set; } //应用版本号 public string programVersion { get; set; } //应用下载路径 public string programPackageUrl { get; set; } } }