court/models/court.go

17 lines
179 B
Go
Raw Normal View History

2024-03-28 11:29:32 +01:00
package models
type Court struct {
ID string
URL string
}
type Link struct {
BaseUrl string
ID string
}
type PageData struct {
PageTitle string
Courts []Court
}