from enum import Enum class UserRole(str, Enum): ADMIN = "admin" OPERATOR = "operator" VIEWER = "viewer"