mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
12 lines
145 B
PHP
12 lines
145 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Enums\GraphQL\Sort;
|
|
|
|
enum SortDirection: string
|
|
{
|
|
case ASC = 'asc';
|
|
case DESC = 'desc';
|
|
}
|