Add FileToParse entity

This commit is contained in:
2025-11-17 16:15:31 +09:00
parent d2d9432687
commit 1be00766ec
6 changed files with 392 additions and 1 deletions

View 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; }
}
}