games-screenshot-manager/pkg/games/structs.go

14 lines
183 B
Go
Raw Normal View History

2020-10-29 12:50:27 +00:00
package games
type Game struct {
ID uint64
Name string
Platform string
Provider string
Screenshots []Screenshot
}
type Screenshot struct {
Path string
}