Priority/backend.light/priority.go
2024-01-12 15:27:29 +01:00

19 lines
382 B
Go

package main
type Priority struct {
Surfers []Surfer `json:"surfers"`
Count int `json:"count"`
Round Round `json:"round"`
}
type Surfer struct {
Name string `json:"name"`
Color string `json:"color"`
Priority string `json:"priority"`
}
type Round struct {
Name string `json:"name"`
Heat int `json:"heat"`
Category string `json:"category"`
}