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