NotificationNameEnum.php 365 B

1234567891011
  1. <?php
  2. namespace MGModule\DNSManager2\models\custom\notification;
  3. use MGModule\DNSManager2\mgLibs\custom;
  4. class NotificationNameEnum extends custom\BasicEnumAbstract {
  5. const OTHER = 'other';
  6. const ZONE_CREATED_EMAIL = 'zone_created_email';
  7. const ZONE_EDITED_EMAIL = 'zone_edited_email';
  8. const ZONED_REMOVED_EMAIL = 'zone_removed_email';
  9. }