Class Tournament
Represents a tournament in the Tournament Management Application.
Inherited Members
Namespace: Tournaments.Shared.Models
Assembly: Tournaments.Shared.dll
Syntax
public class Tournament
Properties
| Edit this page View SourceName
Gets or sets the unique name of the tournament.
Declaration
[Key]
public required string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
ParentTournament
Gets or sets the parent tournament.
Declaration
[ForeignKey("ParentTournamentName")]
[JsonIgnore]
public Tournament? ParentTournament { get; set; }
Property Value
Type | Description |
---|---|
Tournament |
ParentTournamentName
Gets or sets the name of the parent tournament, if any.
Declaration
public string? ParentTournamentName { get; set; }
Property Value
Type | Description |
---|---|
string |
Registrations
Gets or sets the registrations for this tournament.
Declaration
[JsonIgnore]
public ICollection<Registration> Registrations { get; set; }
Property Value
Type | Description |
---|---|
ICollection<Registration> |
SubTournaments
Gets or sets the sub-tournaments of this tournament.
Declaration
public ICollection<Tournament> SubTournaments { get; set; }
Property Value
Type | Description |
---|---|
ICollection<Tournament> |