You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.3 KiB
C#
63 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Txgy.FilesWatcher.model
|
|
{
|
|
public class ProcessInfo
|
|
{
|
|
private string proName;
|
|
/// <summary>
|
|
/// 程序路径
|
|
/// </summary>
|
|
public string ProName
|
|
{
|
|
get { return proName; }
|
|
set { proName = value; }
|
|
}
|
|
private string proTitle;
|
|
/// <summary>
|
|
/// 程序路径
|
|
/// </summary>
|
|
public string ProTitle
|
|
{
|
|
get { return proTitle; }
|
|
set { proTitle = value; }
|
|
}
|
|
|
|
private string proPath;
|
|
/// <summary>
|
|
/// 程序路径
|
|
/// </summary>
|
|
public string ProPath
|
|
{
|
|
get { return proPath; }
|
|
set { proPath = value; }
|
|
}
|
|
private string proParams;
|
|
|
|
/// <summary>
|
|
/// 启动参数
|
|
/// </summary>
|
|
public string ProParams
|
|
{
|
|
get { return proParams; }
|
|
set { proParams = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 配置文件路径
|
|
/// </summary>
|
|
public string JsonPath { get; set; }
|
|
|
|
private int pid;
|
|
public int Pid
|
|
{
|
|
get { return pid; }
|
|
set { pid = value; }
|
|
}
|
|
}
|
|
}
|