Add parsing for LeafInputData after retrieving CleanedInput files
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using LeafWeb.Core.Utility;
|
||||
|
||||
namespace LeafWeb.Core.Entities
|
||||
@@ -9,11 +10,22 @@ namespace LeafWeb.Core.Entities
|
||||
/// </summary>
|
||||
public class LeafInputData
|
||||
{
|
||||
[ForeignKey("LeafOutputFile")]
|
||||
public int Id { get; set; }
|
||||
|
||||
public virtual LeafInputDataSite Site { get; set; }
|
||||
public virtual LeafInputDataPhotosynthetic Photosynthetic { get; set; }
|
||||
public virtual ICollection<LeafInputDataCurve> Data { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Leaf Input set this data belongs to
|
||||
/// </summary>
|
||||
public virtual LeafInput LeafInput { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Output file this data was parsed from
|
||||
/// </summary>
|
||||
public virtual LeafOutputFile LeafOutputFile { get; set; }
|
||||
|
||||
[ParseInfo(1, exampleValue: "First and last name")]
|
||||
public string InvestigatorName { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user