Working on data and sztl
This commit is contained in:
14
SessionZero/Data/SzTemplate.cs
Normal file
14
SessionZero/Data/SzTemplate.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System.Collections.Generic;
|
||||
using SessionZero.Data.Sztl;
|
||||
|
||||
namespace SessionZero.Data;
|
||||
|
||||
public class SzTemplate
|
||||
{
|
||||
public string Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string DataType { get; set; }
|
||||
public Dictionary<string, SztlField> Fields { get; set; } = new();
|
||||
public Dictionary<string, SztlFieldGroup> SubGroups { get; set; } = new();
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user