TournamentEntry

data class TournamentEntry(val tournament: Tournament, val date: String, val code: String, val division: String, val rounds: List<Round>)

Represents a historical tournament entry for a user.

Constructors

Link copied to clipboard
constructor(tournament: Tournament, date: String, code: String, division: String, rounds: List<Round>)

Properties

Link copied to clipboard

The name for the user's entry in the tournament.

Link copied to clipboard

The date the tournament is on.

Link copied to clipboard

The division of the tournament.

Link copied to clipboard

The round this entry is in.

Link copied to clipboard

The tournament this entry is for.