play-of-the-game/shared/src/user_state.gleam

6 lines
108 B
Gleam

import gleam/option
pub type UserState {
UserState(id: Int, name: String, game_id: option.Option(Int))
}