Datasets now serialize/save and deserialize/load properly. Created a test in the CLI project
This commit is contained in:
@@ -2,8 +2,8 @@ namespace SzLib.DataObjects;
|
||||
|
||||
public class SzField
|
||||
{
|
||||
public required string Id;
|
||||
public required SzFieldType FieldType;
|
||||
public bool IsList = false;
|
||||
public string Value = "";
|
||||
public required string Id {get; set;}
|
||||
public required SzFieldType FieldType {get; set;}
|
||||
public bool IsList {get; set;} = false;
|
||||
public string Value {get; set;} = "";
|
||||
}
|
||||
Reference in New Issue
Block a user