AuthorBuddy/Data/DocumentMetaEntity.cs

12 lines
326 B
C#
Raw Normal View History

2026-05-14 12:31:35 +02:00
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; }
}