beerpong-elo/internal/model/gameResult.go

12 lines
155 B
Go

package model
type GameResultID string
type GameResult struct {
ID GameResultID
Game GameID
Player PlayerID
StartElo int
EndElo int
}