changed dictionary to class object so we can enforce field requirement.

This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-02-12 03:27:26 -07:00
parent c5c0a6900b
commit 7e70f5108f
13 changed files with 21 additions and 12 deletions

View File

@@ -11,6 +11,6 @@
public string Notes { get; set; }
public List<UploadedFiles> Files { get; set; } = new List<UploadedFiles>();
public List<string> Tags { get; set;} = new List<string>();
public Dictionary<string, string> ExtraFields { get; set; } = new Dictionary<string, string>();
public List<ExtraField> ExtraFields { get; set; } = new List<ExtraField>();
}
}