Working on data and sztl

This commit is contained in:
2025-11-30 19:32:36 -06:00
parent b1a43d038e
commit 27d3f0b452
16 changed files with 157 additions and 142 deletions

View File

@@ -0,0 +1,11 @@
using SessionZero.Data.Sztl;
namespace SessionZero.Data;
public class SzField
{
public string Id { get; set; }
public object? Value { get; set; }
public SzFieldType Type { get; set; }
public bool IsTextBlock { get; set; }
}