/**
 * Template Usage Type Enum
 * Determines how a template is used in the system
 */
export enum TemplateUsageTypeEnum {
  /**
   * General templates are used for individual communications
   * (triggered by specific events or actions)
   */
  GENERAL = 'general',

  /**
   * Bulk email templates for mass communications
   */
  BULK_EMAIL = 'bulk_email',

  /**
   * Portal-level templates (e.g., OTP, system notifications)
   */
  PORTAL = 'portal',
}
