feat: init client
This commit is contained in:
16
models/card_resume.go
Normal file
16
models/card_resume.go
Normal file
@@ -0,0 +1,16 @@
|
||||
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"`
|
||||
}
|
||||
Reference in New Issue
Block a user