12 lines
155 B
Go
12 lines
155 B
Go
package model
|
|
|
|
type GameResultID string
|
|
|
|
type GameResult struct {
|
|
ID GameResultID
|
|
Game GameID
|
|
Player PlayerID
|
|
StartElo int
|
|
EndElo int
|
|
}
|