11 lines
201 B
C#
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; }
|
|
}
|
|
} |