mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 22:30:30 -04:00
6 lines
151 B
PHP
6 lines
151 B
PHP
<?
|
|
enum ArtworkSort: string{
|
|
case CreatedNewest = 'created-newest';
|
|
case ArtistAlpha = 'artist-alpha';
|
|
case CompletedNewest = 'completed-newest';
|
|
}
|