using System.Collections.Generic; public class Config { public string name { get; set; } = "guy who didn't configure"; public string bootstrap_servers { get; set; } = "localhost:9092"; public List commands { get; set; } public class Command { public string name { get; set; } public string shell { get; set; } public List args { get; set; } } }