10 lines
285 B
Go
10 lines
285 B
Go
package domain
|
|
|
|
type League struct {
|
|
ID int64 `json:"id" example:"1"`
|
|
Name string `json:"name" example:"BPL"`
|
|
CountryCode string `json:"cc" example:"uk"`
|
|
Bet365ID int32 `json:"bet365_id" example:"1121"`
|
|
IsActive bool `json:"is_active" example:"false"`
|
|
}
|