Files
2020-06-19 19:28:07 +02:00

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; }
}
}