public ObservableCollection<Drill> DrillList { get; set; } = [ new Drill { drill = "DR055", radio = "Test" }, new Drill { drill = "DR060", radio = "Test2" }, ];}public class Drill{ private string drillID; private string radioIpAddress; public Drill(string drill, string radio) { this.drillID = drill; this.radioIpAddress = radio; } public string drill { get; set; } public string radio { get; set; }}