diff --git a/Expedience.Api/Consumers/DutyCompletionResultConsumer.cs b/Expedience.Api/Consumers/DutyCompletionResultConsumer.cs index 1896df7..1d9387e 100644 --- a/Expedience.Api/Consumers/DutyCompletionResultConsumer.cs +++ b/Expedience.Api/Consumers/DutyCompletionResultConsumer.cs @@ -3,7 +3,7 @@ using Expedience.Infrastructure; using Expedience.Infrastructure.Concurrency; using Expedience.Infrastructure.Models; using MassTransit; -using static MassTransit.Monitoring.Performance.BuiltInCounters; + namespace Expedience.Api.Consumers { @@ -66,6 +66,7 @@ namespace Expedience.Api.Consumers Lang = message.ClientInfo.GameLanguage, DataCenter = message.DataCenter, UploadedAt = message.UploadDateUtc, + ContentFinderConditionId = message.DutyInfo.ContentFinderConditionId, }; if (dutyCompletionResult == null) diff --git a/Expedience.Infrastructure/Models/DutyCompletionResult.cs b/Expedience.Infrastructure/Models/DutyCompletionResult.cs index 1e1a6d4..11a17b6 100644 --- a/Expedience.Infrastructure/Models/DutyCompletionResult.cs +++ b/Expedience.Infrastructure/Models/DutyCompletionResult.cs @@ -17,7 +17,8 @@ namespace Expedience.Infrastructure.Models public int Minutes { get; set; } public int Seconds { get; set; } public int Milliseconds { get; set; } - public string GameVersion { get; set; } + public int? ContentFinderConditionId { get; set; } + public string GameVersion { get; set; } public string PluginVersion { get; set; } public string Lang { get; set; } public List DutyMembers { get; set; }