Files
LeafWeb/Core/Models/LeafInputFile.cs
T
2015-11-20 11:39:23 -05:00

11 lines
201 B
C#

using System.ComponentModel.DataAnnotations;
namespace LeafWeb.Core.Models
{
public class LeafInputFile
{
[Key]
public string LeafInputId { get; set; }
public byte[] File { get; set; }
}
}