20 lines
305 B
Go
20 lines
305 B
Go
package models
|
|
|
|
// SetResume resume of the set.
|
|
type SetResume struct {
|
|
// ID Globally unique set ID.
|
|
ID string
|
|
|
|
// Name of the set.
|
|
Name string
|
|
|
|
// Logo incomplete URL.
|
|
Logo string
|
|
|
|
// Symbol incomplete URL.
|
|
Symbol string
|
|
|
|
// CardCount number of card in the set.
|
|
CardCount SetCardCountResume
|
|
}
|