using System.ComponentModel.DataAnnotations.Schema; namespace LeafWeb.Core.Entities { public class LeafOutputFileContents { [ForeignKey("LeafOutputFile")] public int Id { get; set; } public virtual LeafOutputFile LeafOutputFile { get; set; } public byte[] Contents { get; set; } } }