using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Runtime.Serialization.Formatters.Binary; using System.Text; using System.Threading.Tasks; namespace Container.Model { public class ExeModel { //应用名称 public string exename { get; set; } //启动项名称 public string exestartname { get; set; } //应用文件夹路径名称 public string exepath { get; set; } //图标路径 public string icopath { get; set; } //应用ID public string AppID { get; set; } public string Version { get; set; } public bool Default { get; set; } } }