using System.Collections.Generic; namespace SessionZero.Data.Sztl; public class SzFieldGroup { public string Id { get; set; } public Dictionary Fields { get; set; } = new(); public Dictionary SubGroups { get; set; } = new(); }