Files
Walleby/Bitvault/Document.cs
T
TheXamlGuy 7cbca0783f WIP
2024-05-04 15:13:46 +01:00

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