beerpong-elo/internal/model/gameResult.go

10 lines
121 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 01:12:38 +01:00
ID GameResultID
Game GameID
Player PlayerID
2025-01-05 02:53:54 +01:00
}