15 lines
273 B
C#
15 lines
273 B
C#
using System.Collections.Generic;
|
|
|
|
namespace LeafWeb.Core.Entities
|
|
{
|
|
public class LeafInputFile
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public virtual LeafInput LeafInput { get; set; }
|
|
|
|
public string Filename { get; set; }
|
|
|
|
public byte[] Contents { get; set; }
|
|
}
|
|
} |