mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
13 lines
177 B
PHP
13 lines
177 B
PHP
<?php
|
|
|
|
namespace App\Config;
|
|
|
|
enum TldType: string
|
|
{
|
|
case iTLD = 'iTLD';
|
|
case gTLD = 'gTLD';
|
|
case sTLD = 'sTLD';
|
|
case ccTLD = 'ccTLD';
|
|
case tTLD = 'tTLD';
|
|
}
|