17 lines
452 B
Go
17 lines
452 B
Go
package models
|
|
|
|
// CardResume contains basic informations about a specific card.
|
|
type CardResume struct {
|
|
// ID unique card ID based on the set ID and the cards ID within the set.
|
|
ID string `json:"id"`
|
|
|
|
// LocalID indexing this card within its set, usually just its number.
|
|
LocalID string `json:"localId"`
|
|
|
|
// Name of the card
|
|
Name string `json:"name"`
|
|
|
|
// Image url of the card without the extension and quality.
|
|
Image string `json:"image"`
|
|
}
|