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