mirror of
https://github.com/standardebooks/web.git
synced 2025-07-09 16:20:27 -04:00
7 lines
119 B
PHP
7 lines
119 B
PHP
<?
|
|
namespace Enums;
|
|
|
|
enum EbookPlaceholderStatus: string{
|
|
case Wanted = 'wanted';
|
|
case InProgress = 'in_progress';
|
|
}
|