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 Name string SpriteUri string X int Y int } type Table struct { Name string Passcode string MapImageUrl string DiceRolls []DiceRoll Tokens []Token AvailableTokens []Token }