20 lines
455 B
C#
20 lines
455 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace LeafWeb.Core.Models
|
|
{
|
|
public class LeafInputFile
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public virtual LeafInput LeafInput { get; set; }
|
|
|
|
/// <summary>
|
|
/// Parsed values from the LeafInput used in LeafWeb for filtering/searching
|
|
/// </summary>
|
|
// public virtual LeafInputInfo LeafInputInfo { get; set; }
|
|
|
|
public string Filename { get; set; }
|
|
|
|
public byte[] Contents { get; set; }
|
|
}
|
|
} |