namespace SessionZero.SzfLib.Parser; public class SzfSection(string name) { public string Name { get; set; } = name; public Dictionary Fields { get; set; } = new(); public Dictionary Subsections { get; set; } = new(); }