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 class Command { public string name { get; set; } public string shell { get; set; } } public List commands { get; set; } public List checks { get; set; } }