Class Registration
Represents the registration of a player in a tournament.
Inherited Members
Namespace: Tournaments.Shared.Models
Assembly: Tournaments.Shared.dll
Syntax
public class Registration
Properties
| Edit this page View SourceId
Gets or sets the unique identifier for the registration.
Declaration
[Key]
public int Id { get; set; }
Property Value
Type | Description |
---|---|
int |
Player
Gets or sets the player associated with the registration.
Declaration
[ForeignKey("PlayerGamertag")]
[JsonIgnore]
public Player Player { get; set; }
Property Value
Type | Description |
---|---|
Player |
PlayerGamertag
Gets or sets the gamertag of the player.
Declaration
public required string PlayerGamertag { get; set; }
Property Value
Type | Description |
---|---|
string |
Tournament
Gets or sets the tournament associated with the registration.
Declaration
[ForeignKey("TournamentName")]
[JsonIgnore]
public Tournament Tournament { get; set; }
Property Value
Type | Description |
---|---|
Tournament |
TournamentName
Gets or sets the name of the tournament.
Declaration
public required string TournamentName { get; set; }
Property Value
Type | Description |
---|---|
string |