mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-07 05:00:16 -04:00
10 lines
156 B
Python
10 lines
156 B
Python
from enum import Enum
|
|
|
|
|
|
class Role_Enum(Enum):
|
|
"""Determine role for User"""
|
|
|
|
ADMIN = "ADMIN"
|
|
EMPLOYEE = "EMPLOYEE"
|
|
VOLUNTEER = "VOLUNTEER"
|