using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IOTContainer.Model { public class AppUpdateModel { public UpdateModel update { get; set; } } public class UpdateModel { public string version { get; set; } public string url { get; set; } public int size { get; set; } public string name { get; set; } } }