using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace DataLibrary.XmlCons { public class XmlConsWinReport { private bool debug; public bool Debug { get { return debug; } set { debug = value; } } private string ip; public string IP { get { return ip; } set { ip = value; } } private int port; public int Port { get { return port; } set { port = value; } } private string exe_pb_path; public string EXE_PB_Path { get { return exe_pb_path; } set { exe_pb_path = value; } } } }