Files
tcgdex-golang/models/legal.go
2025-08-12 18:57:23 +02:00

11 lines
273 B
Go

package models
// Legal informs about legality of the card in restricted tournament.
type Legal struct {
// Standard card usable is standard tournaments.
Standard bool `json:"standard"`
// Expanded card usable in expended tournament
Expanded bool `json:"expanded"`
}