vito/app/Enums/NotificationChannel.php
2024-03-17 12:26:48 +01:00

15 lines
186 B
PHP

<?php
namespace App\Enums;
final class NotificationChannel
{
const EMAIL = 'email';
const SLACK = 'slack';
const DISCORD = 'discord';
const TELEGRAM = 'telegram';
}