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

11 lines
178 B
Go

package models
// CardItem represents an item.
type CardItem struct {
// Name of the item.
Name string `json:"name"`
// Effect of the item.
Effect string `json:"effect"`
}