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

22 lines
422 B
C#

using Bitvault.Data;
using System.ComponentModel.DataAnnotations;
namespace Bitvault.Data;
public record Content
{
[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; }
}