From 5a32a7a193de14d3a85fe68b2d6ac2f763994bf7 Mon Sep 17 00:00:00 2001 From: ilitirit Date: Fri, 9 Aug 2024 22:56:11 +0200 Subject: [PATCH] Add NPC times --- Expedience.Infrastructure/Models/DutyCompletionRecord.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Expedience.Infrastructure/Models/DutyCompletionRecord.cs b/Expedience.Infrastructure/Models/DutyCompletionRecord.cs index 0d0ab3e..be4f4fd 100644 --- a/Expedience.Infrastructure/Models/DutyCompletionRecord.cs +++ b/Expedience.Infrastructure/Models/DutyCompletionRecord.cs @@ -21,5 +21,7 @@ namespace Expedience.Infrastructure.Models public TimeSpan? AvgSolo { get; set; } public TimeSpan? MinMine { get; set; } public TimeSpan? AvgMine { get; set; } - } + public TimeSpan? MinNpc { get; set; } + public TimeSpan? AvgNpc { get; set; } + } }