Added Client feature: reading configuration from Server in startup form

This commit is contained in:
CMS3762\carminatini
2018-01-11 16:53:04 +01:00
parent 8269b849f7
commit ac0c20ee89
10 changed files with 249 additions and 96 deletions
+6 -2
View File
@@ -8,9 +8,13 @@ namespace Client.Config.SubModels
{
public class Connection
{
public string Url { get; set; }
public string ServerUrl { get; set; }
public ushort ServerPort { get; set; }
public ushort Id { get; set; }
public string StartingUrl { get; set; }
public string ReadConfigUrl { get; set; }
public Boolean DeleteCahceFolderOnStartup { get; set; }
public Boolean BypassReadConfiguration { get; set; }
}
}
+1
View File
@@ -9,6 +9,7 @@ namespace Client.Config.SubModels
public class VendorHmi
{
public Boolean Enabled { get; set; }
public Boolean FollowNcWindow { get; set; }
public ushort Type { get; set; } /* 0: Demo - 1: Fanuc - 2: Siemens - 3: Osai */
}