Status associated with leaffile

This commit is contained in:
2016-02-19 12:43:47 -05:00
parent 75fa448a0f
commit a9b6c026ad
7 changed files with 24 additions and 13 deletions
+6 -1
View File
@@ -1,4 +1,6 @@
namespace LeafWeb.Core.Entities
using System.Collections.Generic;
namespace LeafWeb.Core.Entities
{
public class LeafInputFile
{
@@ -14,5 +16,8 @@
public string Filename { get; set; }
public byte[] Contents { get; set; }
public LeafInputStatusType CurrentStatus { get; set; }
public virtual ICollection<LeafInputFileStatus> LeafInputStatuses { get; set; }
}
}