Files
LeafWeb/Core/Models/LeafInputStatus.cs
T
2016-02-05 23:06:17 -05:00

16 lines
352 B
C#

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