Files
Walleby/Bitvault.Data/Document.cs
T
TheXamlGuy e372eca4d0 Prototyping
2024-05-10 22:38:08 +01:00

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; }
}