14 lines
299 B
C#
14 lines
299 B
C#
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; }
|
|
}
|
|
} |