Add parsing for LeafInputData after retrieving CleanedInput files
This commit is contained in:
@@ -12,10 +12,18 @@ namespace LeafWeb.Core.Entities
|
||||
|
||||
public virtual LeafInput LeafInput { get; set; }
|
||||
|
||||
public string Filename { get; set; }
|
||||
/// <summary>
|
||||
/// CleanedInput files will be parsed and data stored here
|
||||
/// </summary>
|
||||
public virtual LeafInputData LeafInputData { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ToUser, NotToUser, CleanedInput
|
||||
/// </summary>
|
||||
public LeafOutputFileType FileType { get; set; }
|
||||
|
||||
public string Filename { get; set; }
|
||||
|
||||
public byte[] Contents { get; set; }
|
||||
|
||||
public bool IsLeafChartFile => Filename?.Contains(Filename_LeafChart) ?? false;
|
||||
|
||||
Reference in New Issue
Block a user