using System.ComponentModel.DataAnnotations; namespace Bitvault; 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? Tags { get; } public Category? Category { get; } public ICollection? Documents { get; } }