mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 00:42:59 +08:00
7 lines
148 B
Python
7 lines
148 B
Python
from enum import StrEnum
|
|
|
|
|
|
class UserType(StrEnum):
|
|
DISPATCH_CONTACT = "dcuser"
|
|
CLIENT_CONTACT = "ccuser"
|
|
LABORATORY_CONTACT = "lcuser"
|