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