using System.Collections.Generic;
public string Output {get; set;}
public int WaitingTime {get; set;}
public static void Main()
new Item { Output = "1. Tradesman Joe", WaitingTime = 5 },
new Item { Output = "2. Dr Windy Pops", WaitingTime = 2 },
new Item { Output = "3. Grandpa Bob", WaitingTime = 8 },
Thread.Sleep(item.WaitingTime * 1000);
Console.WriteLine(item.Output);