Remaining time estimate

This commit is contained in:
2017-02-03 22:26:00 -05:00
parent 77a35e87d3
commit b4440ecd95
27 changed files with 3579 additions and 550 deletions
+26
View File
@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
namespace LeafWeb.Core.Entities
{
public interface ILeafInput
{
int Id { get; set; }
ICollection<LeafInputFile> InputFiles { get; set; }
ICollection<LeafInputData> LeafInputData { get; set; }
ICollection<LeafOutputFile> OutputFiles { get; set; }
string Name { get; set; }
string Email { get; set; }
string Identifier { get; set; }
string SiteId { get; set; }
string UniqueToken { get; set; }
PhotosynthesisType PhotosynthesisType { get; set; }
DateTime Added { get; set; }
LeafInputStatusType CurrentStatus { get; set; }
ICollection<LeafInputStatus> StatusHistory { get; set; }
Priority PendingPriority { get; set; }
LeafOutputFile OutputErrorMessage { get; }
LeafOutputFile OutputWarningMessage { get; }
TimeSpan TimeInProgress { get; }
}
}
+1 -1
View File
@@ -8,7 +8,7 @@ using System.Linq;
namespace LeafWeb.Core.Entities
{
public class LeafInput
public class LeafInput : ILeafInput
{
public int Id { get; set; }