AuthorBuddy/Data/FileCategoryEntity.cs

12 lines
296 B
C#
Raw Normal View History

2026-05-31 19:31:27 +02:00
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;
}