Files
cms_thermo_active/Client.Config/SubModels/ServerConfigModel.cs
Lucio Maranta fd9e08a0d2 WIP file editor
2019-08-20 16:40:15 +02:00

23 lines
632 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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; }
}
}