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

14 lines
183 B
Go

package games
type Game struct {
ID uint64
Name string
Platform string
Provider string
Screenshots []Screenshot
}
type Screenshot struct {
Path string
}