16 lines
340 B
Python
16 lines
340 B
Python
from enum import Enum
|
|
|
|
|
|
class UserRole(Enum):
|
|
# base roles
|
|
ADMIN = "Administrator"
|
|
|
|
# service provider roles
|
|
SUPPLIER_EMPLOYER = "Director"
|
|
SUPPLIER = "Supplie of service"
|
|
SUPPLIER_EMPLOYEE = "Supplie employee"
|
|
|
|
CLIENT = "Client"
|
|
EMPLOYER = "Client company employer"
|
|
EMPLOYEE = "Client company employee"
|