Datasets now serialize/save and deserialize/load properly. Created a test in the CLI project
This commit is contained in:
@@ -2,10 +2,10 @@ namespace SzLib.DataObjects;
|
||||
|
||||
public class SzTemplateField
|
||||
{
|
||||
public required string Name;
|
||||
public required string Id;
|
||||
public bool IsList = false;
|
||||
public string DefaultValue = "";
|
||||
public bool IsSpecialType = false;
|
||||
public string SpecialTypeValue = "";
|
||||
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;} = "";
|
||||
}
|
||||
Reference in New Issue
Block a user