export default class Tournament extends Record(defaultTournament) {
  getYearAndName() {
    return `${this.year} ${this.name}`;
  }
}