mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
9 lines
91 B
PHP
9 lines
91 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Config;
|
||
|
|
|
||
|
|
enum TriggerAction: string
|
||
|
|
{
|
||
|
|
case SendEmail = 'email';
|
||
|
|
}
|