Rename SzLib to SzCore

This commit is contained in:
2026-01-23 23:41:16 -06:00
parent f78f8fdf57
commit 7f232254b1
17 changed files with 29 additions and 29 deletions

View File

@@ -0,0 +1,11 @@
namespace SzCore.DataObjects;
public class SzTemplateField
{
public required string Name {get; set;}
public required string Id {get; set;}
public bool IsList {get; set;} = false;
public string DefaultValue {get; set;} = "";
public bool IsSpecialType {get; set;} = false;
public string SpecialTypeValue {get; set;} = "";
}