Files
LeafWeb/Core/Entities/LeafInputFileStatus.cs
T

16 lines
379 B
C#

using System;
namespace LeafWeb.Core.Entities
{
/// <summary>
/// Status of processing LeafInput
/// </summary>
public class LeafInputFileStatus
{
public int Id { get; set; }
public virtual LeafInputFile LeafInputFile { get; set; }
public LeafInputStatusType Status { get; set; }
public string Description { get; set; }
public DateTime DateTime { get; set; }
}
}