Starting on the Data portion

This commit is contained in:
2025-11-29 19:34:30 -06:00
parent aae22e57cf
commit c749434d07
7 changed files with 35 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
using System;
namespace SessionZero.Data.Sztl;
public class SztlField
{
public required string Id { get; set; }
public required SztlFieldType FieldType { get; set; }
}
public enum SztlFieldType
{
Number, Text, Textbox, Bool, Object, Formula
}