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 ExtSoftwares { get; set; } } }