mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 06:40:33 -04:00
8 lines
147 B
PHP
8 lines
147 B
PHP
<?
|
|
namespace Enums;
|
|
|
|
enum FeedCollectionType: string{
|
|
case Authors = 'authors';
|
|
case Collections = 'collections';
|
|
case Subjects = 'subjects';
|
|
}
|