mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 06:40:33 -04:00
8 lines
123 B
PHP
8 lines
123 B
PHP
<?
|
|
namespace Enums;
|
|
|
|
enum CollectionType: string{
|
|
case Series = 'series';
|
|
case Set = 'set';
|
|
case Unknown = 'unknown';
|
|
}
|