diff --git a/Gordon360/Models/ViewModels/RecIM/MatchBracketExportViewModel.cs b/Gordon360/Models/ViewModels/RecIM/MatchBracketExportViewModel.cs index 82c3b5ede..64858ec07 100644 --- a/Gordon360/Models/ViewModels/RecIM/MatchBracketExportViewModel.cs +++ b/Gordon360/Models/ViewModels/RecIM/MatchBracketExportViewModel.cs @@ -9,7 +9,7 @@ public class MatchBracketExportViewModel { public int id { get; set; } public string? name { get; set; } - public int? nextMatchID { get; set; } + public int? nextMatchId { get; set; } public string tournamentRoundText { get; set; } public string? state { get; set; } public DateTime startTime { get; set;} diff --git a/Gordon360/Services/RecIM/SeriesService.cs b/Gordon360/Services/RecIM/SeriesService.cs index 560b319f9..186aa0d0a 100644 --- a/Gordon360/Services/RecIM/SeriesService.cs +++ b/Gordon360/Services/RecIM/SeriesService.cs @@ -1816,7 +1816,7 @@ public IEnumerable GetSeriesBracketInformation(int { id = m.MatchID, name = null, //unused currently - nextMatchID = m.NextMatchID, + nextMatchId = m.NextMatchID, tournamentRoundText = $"{m.RoundNumber + 1}", //start at round 1 instead of 0 for UI readability state = m.State, startTime = m.StartTime,