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