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"` }