using System; namespace LeafWeb.Core.Entities { /// /// Status of processing LeafInput /// 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; } } }