mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
19 lines
414 B
PHP
19 lines
414 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Config;
|
||
|
|
|
||
|
|
enum DomainRole: string
|
||
|
|
{
|
||
|
|
case Registrant = 'registrant';
|
||
|
|
case Technical = 'technical';
|
||
|
|
case Administrative = 'administrative';
|
||
|
|
case Abuse = 'abuse';
|
||
|
|
case Billing = 'billing';
|
||
|
|
case Registrar = 'registrar';
|
||
|
|
case Reseller = 'reseller';
|
||
|
|
case Sponsor = 'sponsor';
|
||
|
|
case Proxy = 'proxy';
|
||
|
|
case Notifications = 'notifications';
|
||
|
|
case Noc = 'noc';
|
||
|
|
}
|