Added ICollectionSynchronization

This commit is contained in:
TheXamlGuy
2024-06-04 12:14:00 +01:00
parent 0842988dc3
commit 554c12382a
44 changed files with 149 additions and 116 deletions
+3 -1
View File
@@ -8,8 +8,10 @@ public record BlobEntry
{
public byte[]? Data { get; set; }
public DocumentType Type { get; set; }
public int Type { get; set; }
[Key]
public int Id { get; set; }
public DateTimeOffset DateTime { get; set; }
}
-7
View File
@@ -1,7 +0,0 @@
namespace Bitvault.Data;
public enum DocumentType
{
Form,
File
}