mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 22:30:30 -04:00
7 lines
151 B
PHP
7 lines
151 B
PHP
<?
|
|
enum EbookSort: string{
|
|
case Newest = 'newest';
|
|
case AuthorAlpha = 'author-alpha';
|
|
case ReadingEase = 'reading-ease';
|
|
case Length = 'length';
|
|
}
|