Yimaru-BackEnd/internal/domain/league.go
2025-06-06 03:36:15 +03:00

10 lines
135 B
Go

package domain
type League struct {
ID int64
Name string
CountryCode string
Bet365ID int32
IsActive bool
}