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();
 }
Exemple #2
0
        public GameConsoleClientInformation Copy()
        {
            GameConsoleClientInformation output = new GameConsoleClientInformation();

            output.Id          = Id;
            output.Name        = Name;
            output.PhoneNumber = PhoneNumber;
            output.DateOfBirth = DateOfBirth;
            return(output);
        }