15 lines
245 B
C#
15 lines
245 B
C#
|
|
namespace LeafWeb.Core.Entities
|
|
{
|
|
public class LeafOutputFile
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public virtual LeafInputFile LeafInputFile { get; set; }
|
|
|
|
public string Filename { get; set; }
|
|
|
|
public byte[] Contents { get; set; }
|
|
}
|
|
}
|