11 lines
273 B
Go
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"`
|
|
}
|