Templates

This commit is contained in:
2026-01-26 10:24:16 -06:00
parent 5bde8db8cf
commit 523cd2104f
6 changed files with 181 additions and 62 deletions

View File

@@ -0,0 +1,10 @@
namespace SzCore.DataObjects;
public interface ISzTemplate
{
public string Name { get; set; }
public string Id { get; set; }
public Guid Uuid { get; set; }
public string Description { get; set; }
public Dictionary<string, SzTemplateField> TemplateFields { get; set; }
}