using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Step.Model.ConfigModels { public class NcConfigModel { public string NcVendor { get; set; } public bool showNcHMI { get; set; } public string NcIpAddress { get; set; } public ushort NcPort { get; set; } public string NcUniqueId { get; set; } public string NcName { get; set; } } }