using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace DataLibrary.XmlCons { public class XmlConsServer { private string switchingIP; public string SwitchingIP { get { return switchingIP; } set { switchingIP = value; } } private int switchingPort; public int SwitchingPort { get { return switchingPort; } set { switchingPort = value; } } private bool switchingUsing; public bool SwitchingUsing { get { return switchingUsing; } set { switchingUsing = value; } } private string wsPass; public string WsPass { get { return wsPass; } set { wsPass = value; } } } }