Add FileToParse entity
This commit is contained in:
15
Hcs.WebApp/Data/Hcs/FileToParse.cs
Normal file
15
Hcs.WebApp/Data/Hcs/FileToParse.cs
Normal file
@ -0,0 +1,15 @@
|
||||
namespace Hcs.WebApp.Data.Hcs
|
||||
{
|
||||
public class FileToParse
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public int Path { get; set; }
|
||||
|
||||
public DateTime? ParsedAt { get; set; }
|
||||
|
||||
public int? LastParseOperationId { get; set; }
|
||||
|
||||
public virtual Operation LastParseOperation { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user