Add scoring message
This commit is contained in:
@@ -150,6 +150,7 @@ public static class MongoMappers
|
||||
StartDate = b.StartDate,
|
||||
EndDate = b.EndDate,
|
||||
Score = b.Score,
|
||||
ScoreMessage = b.ScoreMessage ?? string.Empty,
|
||||
RequestId = b.RequestId,
|
||||
Metadata = string.IsNullOrEmpty(b.Metadata) ? null : JsonSerializer.Deserialize<object>(b.Metadata)
|
||||
};
|
||||
@@ -179,6 +180,7 @@ public static class MongoMappers
|
||||
StartDate = result.StartDate,
|
||||
EndDate = result.EndDate,
|
||||
Score = result.Score,
|
||||
ScoreMessage = result.ScoreMessage ?? string.Empty,
|
||||
RequestId = result.RequestId,
|
||||
Metadata = result.Metadata == null ? null : JsonSerializer.Serialize(result.Metadata)
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user