13 lines
221 B
C#
13 lines
221 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bitvault;
|
|
|
|
public record Document
|
|
{
|
|
public byte[]? Blob { get; set; }
|
|
|
|
public DocumentType Type { get; set; }
|
|
|
|
[Key]
|
|
public int Id { get; set; }
|
|
} |