vito/app/Enums/NotificationChannel.php
2024-03-24 09:56:34 +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';
}