You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
704 B
30 lines
704 B
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; }
|
|
}
|
|
|
|
|
|
}
|
|
|