9 lines
236 B
C#
9 lines
236 B
C#
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;} = "";
|
|
} |