12 lines
326 B
C#
12 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; }
|
||
|
|
}
|