Skip to content

Commit

Permalink
Merge pull request #33 from BellumGens/player-countries
Browse files Browse the repository at this point in the history
feat(bge): adding player countries
  • Loading branch information
kdinev authored Nov 30, 2024
2 parents 4c84940 + 391e028 commit 12019ec
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ public TournamentSC2Participant(TournamentApplication application, List<Tourname
: base(application)
{
BattleTag = application.BattleNetId;
Country = application.Country;
User = new UserInfoViewModel(application.User);
TournamentSC2GroupId = application.TournamentSC2GroupId;
if (matches != null)
Expand Down Expand Up @@ -46,6 +47,7 @@ public TournamentSC2Participant(TournamentApplication application, List<Tourname

public Guid? TournamentSC2GroupId { get; set; }
public string BattleTag { get; set; }
public string Country { get; set; }
public int PlayerPoints { get; set; } = 0;
public UserInfoViewModel User { get; set; }
}
Expand Down

0 comments on commit 12019ec

Please sign in to comment.