19 lines
538 B
C#
19 lines
538 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Client.Config.SubModels
|
|
{
|
|
public class ServerConfigModel
|
|
{
|
|
public string NcVendor { get; set; }
|
|
public string ShowHMI { get; set; }
|
|
public string NcIp { get; set; }
|
|
public string NcPort { get; set; }
|
|
public string ProdEnabled { get; set; }
|
|
public string ProdPath { get; set; }
|
|
public string Autorun { get; set; }
|
|
public string EditorPath { get; set; }
|
|
|
|
public List<Software> ExtSoftwares { get; set; }
|
|
}
|
|
}
|