AuthorBuddy/Data/DocumentMetaEntity.cs
2026-05-20 06:12:54 +02:00

11 lines
326 B
C#

namespace AuthorBuddy.Web.Data;
public class DocumentMetaEntity
{
public int Id { get; set; }
public int? ProjectId { get; set; }
public string FilePath { get; set; } = string.Empty;
public DateTime? LastModified { get; set; }
public string? Hash { get; set; }
public string? FileType { get; set; }
}