from enum import Enum


class DefaultPriorities(Enum):
    High = 0
    Medium = 128
    Low = 255