public void Copy(GameConsoleReportProperties inputProperties)
 {
     CLINxR_Flag = inputProperties.CLINxR_Flag;
     CLINxR_Name = inputProperties.CLINxR_Name;
     CLCOxR_Name = inputProperties.CLCOxR_Name;
     COSExR_Flag = inputProperties.COSExR_Flag;
     COSExR_Id   = inputProperties.COSExR_Id;
     COSExR_Name = inputProperties.COSExR_Name;
 }
 public GameConsoleSetup(string Name = "Game Console", string ColorID = "#505055", int NumberID = 0, bool EditEnabled = false)
 {
     this.Name        = Name;
     this.ColorID     = ColorID;
     this.NumberID    = NumberID;
     this.EditEnabled = EditEnabled;
     Properties       = new GameConsoleProperties();
     ReportProperties = new GameConsoleReportProperties();
     ClientData       = new GameConsoleClientInformation();
 }