14 lines
279 B
Go
14 lines
279 B
Go
|
package football
|
||
|
|
||
|
import "git.lehouerou.net/laurent/sorare/graphql"
|
||
|
|
||
|
type Season struct {
|
||
|
Id graphql.Id `graphql:"id"`
|
||
|
Name string `graphql:"name"`
|
||
|
StartYear int `graphql:"startYear"`
|
||
|
}
|
||
|
|
||
|
type SeasonParams struct {
|
||
|
StartYear int `graphql:"startYear"`
|
||
|
}
|