Prototyping
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user