beerpong-elo/internal/model/gameResult.go

12 lines
155 B
Go
Raw Normal View History

2025-01-05 02:53:54 +01:00
package model
type GameResultID string
type GameResult struct {
2025-01-06 15:06:47 +01:00
ID GameResultID
Game GameID
Player PlayerID
StartElo int
EndElo int
2025-01-05 02:53:54 +01:00
}