13 lines
226 B
C#
13 lines
226 B
C#
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; }
|
|
} |