mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 06:40:33 -04:00
8 lines
159 B
PHP
8 lines
159 B
PHP
<?
|
|
namespace Enums;
|
|
|
|
enum EbookPlaceholderDifficulty: string{
|
|
case Beginner = 'beginner';
|
|
case Intermediate = 'intermediate';
|
|
case Advanced = 'advanced';
|
|
}
|