using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IobConf.Core { public class ServerMapo { /// /// Indica il metodo di trasporto http/https /// public string Transport { get; set; } = "http"; /// /// Indirizzo IP server /// public string IpAddr { get; set; } = "127.0.0.1"; /// /// URL Base del server applicativo /// public string BaseAppUrl { get; set; } = "/MP/IO/"; /// /// Dizionario comandi configurati /// public Dictionary Commands { get; set; } = new CmdUri("IOB").StdCommands(); //public CmdUri Commands { get; set; } = new CmdUri(); /// /// Installazione di riferimento /// public string ClientInstall { get; set; } = "SW"; } }