Added SZ singleton and services

This commit is contained in:
2026-01-25 16:47:29 -06:00
parent 74ee8eefc3
commit 800b5d9def
8 changed files with 140 additions and 12 deletions

View File

@@ -8,5 +8,6 @@ public class SzDataset
public required string DataObjectType {get; set;}
public required string DataObjectTemplateId {get; set;}
public Guid? DataObjectTemplateUuid {get; set;}
public Dictionary<string, SzDataObject> DataObjects {get; set;} = [];
}

View File

@@ -2,8 +2,8 @@ namespace SzCore.DataObjects;
public class SzTemplateField
{
public required string Name {get; set;}
public required string Id {get; set;}
public required SzFieldType FieldType { get; set; }
public bool IsList {get; set;} = false;
public string DefaultValue {get; set;} = "";
public bool IsSpecialType {get; set;} = false;