16 lines
370 B
Go
16 lines
370 B
Go
package tournament
|
|
|
|
type Team struct {
|
|
ID string `json:"id"`
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
type Tournament struct {
|
|
ID string `json:"id"`
|
|
Name string `json:"name"`
|
|
Location string `json:"location"`
|
|
MaxParticipants int `json:"maxParticipants"`
|
|
Teams []Team `json:"teams"`
|
|
OrganizerId string `json:"organizerId"`
|
|
}
|