diff --git a/Expedience.Infrastructure/Models/DutyCompletionRecord.cs b/Expedience.Infrastructure/Models/DutyCompletionRecord.cs index be4f4fd..0bbf748 100644 --- a/Expedience.Infrastructure/Models/DutyCompletionRecord.cs +++ b/Expedience.Infrastructure/Models/DutyCompletionRecord.cs @@ -1,8 +1,4 @@ using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace Expedience.Infrastructure.Models { @@ -23,5 +19,7 @@ namespace Expedience.Infrastructure.Models public TimeSpan? AvgMine { get; set; } public TimeSpan? MinNpc { get; set; } public TimeSpan? AvgNpc { get; set; } + public TimeSpan? MinUnsync { get; set; } + public TimeSpan? AvgUnsync { get; set; } } } diff --git a/Expedience.Web/Pages/Records.cshtml.cs b/Expedience.Web/Pages/Records.cshtml.cs index 321a860..6450411 100644 --- a/Expedience.Web/Pages/Records.cshtml.cs +++ b/Expedience.Web/Pages/Records.cshtml.cs @@ -34,6 +34,11 @@ namespace Expedience.Web.Pages Mode = "NPC Assisted"; recordTypeNum = 4; } + else if (recordType == "unsync") + { + Mode = "Unsynched"; + recordTypeNum = 5; + } else throw new Exception($"Record Type {recordType} not found"); diff --git a/Expedience.Web/Pages/_DutyTable.cshtml b/Expedience.Web/Pages/_DutyTable.cshtml index a11771c..f4a6cf0 100644 --- a/Expedience.Web/Pages/_DutyTable.cshtml +++ b/Expedience.Web/Pages/_DutyTable.cshtml @@ -12,6 +12,7 @@