mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
15 lines
239 B
Python
15 lines
239 B
Python
from enum import IntEnum
|
|
|
|
|
|
class FeaturedEventReviewStatus(IntEnum):
|
|
inbox = 1
|
|
verified = 2
|
|
rejected = 3
|
|
|
|
|
|
class FeaturedEventRejectionReason(IntEnum):
|
|
duplicate = 1
|
|
untrustworthy = 2
|
|
illegal = 3
|
|
irrelevant = 4
|