Prototyping

This commit is contained in:
TheXamlGuy
2024-05-10 22:38:08 +01:00
parent cc63e3d830
commit e372eca4d0
24 changed files with 139 additions and 99 deletions
+13
View File
@@ -0,0 +1,13 @@
using System.ComponentModel.DataAnnotations;
namespace Bitvault.Data;
public record Document
{
public byte[]? Blob { get; set; }
public DocumentType Type { get; set; }
[Key]
public int Id { get; set; }
}