web/lib/EbookSort.php
2024-01-30 11:10:05 -06:00

7 lines
151 B
PHP

<?
enum EbookSort: string{
case Newest = 'newest';
case AuthorAlpha = 'author-alpha';
case ReadingEase = 'reading-ease';
case Length = 'length';
}