taktik-nette-pohovor/app/UI/DTO/OrderDirection.php

12 lines
134 B
PHP
Raw Normal View History

2025-01-22 22:52:26 +01:00
<?php
declare(strict_types=1);
namespace App\UI\DTO;
enum OrderDirection: string
{
case ASC = "ASC";
case DESC = "DESC";
}