public ConsoleListElement(ConsoleList parent, string text, ConsoleColor color)
 {
     Parent = parent;
     Text   = text;
     Color  = color;
 }
 public ConsoleListElement(ConsoleList parent, ConsoleColor color) : this(parent, string.Empty, color)
 {
 }
 public ConsoleListElement(ConsoleList parent, string text) : this(parent, text, Config.DefaultColor)
 {
 }
 public ConsoleListElement(ConsoleList parent) : this(parent, string.Empty, Config.DefaultColor)
 {
 }