using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StartServerWPF.Modules.Main.Models { public class ProcessingInformationModel { private string processMes; /// /// 启动参数 /// public string ProcessMes { get { return processMes; } set { processMes = value; } } private string monitorTime; /// /// 启动参数 /// public string MonitorTime { get { return monitorTime; } set { monitorTime= value; } } } }