using System.Collections.Generic; namespace LeafWeb.Core.Entities { public class LeafInputFile { public int Id { get; set; } public virtual LeafInput LeafInput { get; set; } /// /// Parsed values from the LeafInput used in LeafWeb for filtering/searching /// // public virtual LeafInputInfo LeafInputInfo { get; set; } public string Filename { get; set; } public byte[] Contents { get; set; } public LeafInputStatusType CurrentStatus { get; set; } public virtual ICollection StatusHistory { get; set; } } }