namespace SzLib.DataObjects; public class SzField { public required string Id {get; set;} public required SzFieldType FieldType {get; set;} public bool IsList {get; set;} = false; public string Value {get; set;} = ""; }