mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 15:20:32 -04:00
6 lines
105 B
PHP
6 lines
105 B
PHP
<?
|
|
enum CollectionType: string{
|
|
case Series = 'series';
|
|
case Set = 'set';
|
|
case Unknown = 'unknown';
|
|
}
|