from enum import Enum class GameState(Enum): initiated = 1 published = 2 started = 3 interrupted = 4 finished = 5