using System.Collections.Generic;
public static void Main()
var tickets = new List<Tix>();
var ordered = new List<Tix>();
ordered.AddRange(tickets.Where(t=>string.IsNullOrEmpty(t.LevelUp)));
Console.WriteLine("Hello World");
public string Component {get;set;}
public string Parent { get; set;}
public string LevelUp { get; set; }
public Tix(string c,string p,string lu){