11 lines
345 B
C#
11 lines
345 B
C#
namespace SzLib.DataObjects;
|
|
|
|
public class SzTemplateField
|
|
{
|
|
public required string Name {get; set;}
|
|
public required string Id {get; set;}
|
|
public bool IsList {get; set;} = false;
|
|
public string DefaultValue {get; set;} = "";
|
|
public bool IsSpecialType {get; set;} = false;
|
|
public string SpecialTypeValue {get; set;} = "";
|
|
} |