felt/models/models.go

25 lines
303 B
Go

package models
import (
"time"
)
type TableKey struct {
Name string
Passcode string
}
type DiceRoll struct {
Faces uint8
Roll []uint8
Player string
Note string
Timestamp time.Time
}
type Token struct {
Id string
SpriteUri string
X int
Y int
}