From f6a3ff1d5c0db593eb4e1c032e2e1e110e07d7b6 Mon Sep 17 00:00:00 2001 From: ilitirit Date: Fri, 9 Aug 2024 18:08:35 +0200 Subject: [PATCH] Rename Position to Rank --- Expedience.Infrastructure/Models/TopXCompletionResult.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Expedience.Infrastructure/Models/TopXCompletionResult.cs b/Expedience.Infrastructure/Models/TopXCompletionResult.cs index 17399ec..00f4dc7 100644 --- a/Expedience.Infrastructure/Models/TopXCompletionResult.cs +++ b/Expedience.Infrastructure/Models/TopXCompletionResult.cs @@ -5,7 +5,7 @@ namespace Expedience.Infrastructure.Models; public class TopXCompletionResult { - public int Position { get; set; } + public int Rank { get; set; } public Guid Id { get; set; } public int TerritoryId { get; set; } public string PlaceName { get; set; }