first commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
from enum import Enum
|
||||
|
||||
class ApprovalStatus(str, Enum):
|
||||
REGISTERED = "registered"
|
||||
UNDER_REVIEW = "under_review"
|
||||
APPROVED = "approved"
|
||||
REJECTED = "rejected"
|
||||
PENDING_CONFIRM = "pending_confirm"
|
||||
CONFIRMED = "confirmed"
|
||||
Reference in New Issue
Block a user