Rearrange LeafInput data

This commit is contained in:
2016-02-17 11:11:25 -05:00
parent 5057d9b577
commit e6ad04cf2b
7 changed files with 203 additions and 188 deletions
+14
View File
@@ -0,0 +1,14 @@

namespace LeafWeb.Core.Entities
{
public class LeafOutputFile
{
public int Id { get; set; }
public virtual LeafInputFile LeafInputFile { get; set; }
public string Filename { get; set; }
public byte[] Contents { get; set; }
}
}