added extra fields attribute to object classes.

This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-02-11 19:08:27 -07:00
parent 50b88dd7a1
commit c5c0a6900b
13 changed files with 28 additions and 10 deletions

View File

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