You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
399 B
17 lines
399 B
package model |
|
|
|
// Game game struct. |
|
type Game struct { |
|
Website string `json:"website"` |
|
Image string `json:"image"` |
|
Name string `json:"name"` |
|
} |
|
|
|
// AppGame app game struct. |
|
type AppGame struct { |
|
GameBaseID int64 `json:"game_base_id"` |
|
GameName string `json:"game_name"` |
|
GameIcon string `json:"game_icon"` |
|
Grade float64 `json:"grade"` |
|
DetailURL string `json:"detail_url"` |
|
}
|
|
|