using AuthorBuddy.Web.Models; namespace AuthorBuddy.Web.Data; public class FileCategoryEntity { public int Id { get; set; } public int ProjectId { get; set; } public string FilePath { get; set; } = string.Empty; public FileCategory Category { get; set; } = FileCategory.None; }