7 lines
93 B
Python
7 lines
93 B
Python
from enum import Enum
|
|
|
|
class DeadlineStatus(Enum):
|
|
FINE = 1
|
|
OVERDUE = 2
|
|
NONE = 3
|