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.
46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StartServerWPF.Modules.Main.Models
|
|
{
|
|
public class SystemConfig
|
|
{
|
|
|
|
/// <summary>
|
|
/// 远程数据库
|
|
/// </summary>
|
|
public RemoteDataBase remoteDb { get; set; }
|
|
/// <summary>
|
|
/// Vpn信息
|
|
/// </summary>
|
|
public VpnInfo vpnInfo;
|
|
/// <summary>
|
|
/// server程序
|
|
/// </summary>
|
|
public ProcessInfo proServer { get; set; }
|
|
/// <summary>
|
|
/// Recv程序
|
|
/// </summary>
|
|
public ProcessInfo proRecv { get; set; }
|
|
/// <summary>
|
|
/// Apms(定位程序)程序
|
|
/// </summary>
|
|
public ProcessInfo proApms { get; set; }
|
|
/// <summary>
|
|
/// Monitor(网页显示)程序
|
|
/// </summary>
|
|
//public ProcessInfo proMonitor { get; set; }
|
|
/// <summary>
|
|
/// 波形tools
|
|
/// </summary>
|
|
public ProcessInfo proTools { get; set; }
|
|
/// <summary>
|
|
/// 波形显示程序
|
|
/// </summary>
|
|
public ProcessInfo proPlot { get; set; }
|
|
}
|
|
}
|