Files
LeafWeb/Core/Entities/LeafInputStatus.cs
T
2016-04-06 13:00:26 -04:00

17 lines
405 B
C#

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