mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-27 17:24:42 +02:00
12 lines
128 B
PHP
12 lines
128 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Enums\GraphQL;
|
|
|
|
enum SortDirection: int
|
|
{
|
|
case ASC = 0;
|
|
case DESC = 1;
|
|
}
|