Add backload for multiple file upload

This commit is contained in:
2016-01-27 11:06:47 -05:00
parent 2c73fb6883
commit 37a7a24436
261 changed files with 28994 additions and 96 deletions
+9 -2
View File
@@ -5,7 +5,14 @@ namespace LeafWeb.Core.Models
public class LeafInputFile
{
[Key]
public string LeafInputId { get; set; }
public byte[] File { get; set; }
public int LeafInputFileId { get; set; }
public virtual LeafInput LeafInput { get; set; }
public virtual LeafInputInfo LeafInputInfo { get; set; }
public string Filename { get; set; }
public byte[] Contents { get; set; }
}
}