10 lines
232 B
Python
10 lines
232 B
Python
from enum import Enum
|
|
|
|
|
|
class CreatedAtSortMode(str, Enum):
|
|
CREATED - AT - ASCENDING = 'created-at-ascending'
|
|
CREATED - AT - DESCENDING = 'created-at-descending'
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|