""" Notification template enums. CRUD is managed by SCM microservice. Only enums kept here for dispatcher template resolution. """ from enum import Enum class TemplateChannel(str, Enum): SMS = "sms" EMAIL = "email" class TemplateStatus(str, Enum): ACTIVE = "active" DRAFT = "draft" ARCHIVED = "archived"