Factories for templates and objects, Sztl parsing

This commit is contained in:
2025-11-30 21:16:33 -06:00
parent a892d982da
commit 069adb5ff5
10 changed files with 421 additions and 15 deletions

View File

@@ -2,8 +2,8 @@ namespace SessionZero.Data.Sztl;
public class SztlField
{
public required string Id { get; set; }
public required SzFieldType Type { get; set; }
public string Id { get; set; }
public SzFieldType Type { get; set; }
public object? DefaultValue { get; set; }
public string? Description { get; set; }
public bool IsList { get; set; }