MatchPairing -> TournamentMatch

This commit is contained in:
Dean Herbert
2019-06-18 14:57:05 +09:00
parent 96e24ebd20
commit da20904a57
22 changed files with 228 additions and 228 deletions

View File

@ -22,7 +22,7 @@ namespace osu.Game.Tournament.Models
public readonly Bindable<DateTimeOffset> StartDate = new Bindable<DateTimeOffset>();
// only used for serialisation
public List<int> Pairings = new List<int>();
public List<int> Matches = new List<int>();
public override string ToString() => Name.Value ?? "None";
}