Moved external programs config into "serverConfig.xml"

This commit is contained in:
Lucio Maranta
2019-04-04 12:18:30 +02:00
parent d7ed663bb2
commit 7fb8c632ae
16 changed files with 150 additions and 31 deletions
@@ -0,0 +1,19 @@
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 List<Software> ExtSoftwares { get; set; }
}
}