Fix fileManager

Added filePath config
This commit is contained in:
Lucio Maranta
2018-09-04 17:06:54 +02:00
parent 757884ebb7
commit 3a0e1bc2a4
12 changed files with 85 additions and 31 deletions
+3 -1
View File
@@ -9,10 +9,12 @@ namespace Step.Model.ConfigModels
public class NcConfigModel
{
public string NcVendor { get; set; }
public bool showNcHMI { 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; }
public string SharedPath { get; set; }
public string SharedName { get; set; }
}
}