mirror of
https://github.com/stijndcl/didier.git
synced 2026-06-23 22:49:55 +02:00
17 lines
333 B
Python
17 lines
333 B
Python
import enum
|
|
|
|
__all__ = ["ReminderCategory", "TaskType"]
|
|
|
|
|
|
class ReminderCategory(enum.IntEnum):
|
|
"""Enum for reminder categories"""
|
|
|
|
LES = enum.auto()
|
|
|
|
|
|
class TaskType(enum.IntEnum):
|
|
"""Enum for the different types of tasks"""
|
|
|
|
BIRTHDAYS = enum.auto()
|
|
SCHEDULES = enum.auto()
|
|
UFORA_ANNOUNCEMENTS = enum.auto()
|