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

14 lines
278 B
Go

package models
// CardAbility Describes a single ability of a pokemon.
type CardAbility struct {
// Ability type (language dependant).
Type string `json:"type"`
// Name of the ability.
Name string `json:"name"`
// Effect of the ability.
Effect string `json:"effect"`
}