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

21 lines
395 B
C#

using System.ComponentModel.DataAnnotations;
namespace Bitvault;
public record Locker
{
[Key]
public int Id { get; set; }
public string? Name { get; set; }
public string? Description { get; set; }
public int State { get; set; }
public ICollection<Tag>? Tags { get; }
public Category? Category { get; }
public ICollection<Document>? Documents { get; }
}