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