mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
16 lines
289 B
PHP
16 lines
289 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Constants\Config;
|
|
|
|
/**
|
|
* Class PlaylistConstants.
|
|
*/
|
|
class PlaylistConstants
|
|
{
|
|
final public const MAX_PLAYLISTS_QUALIFIED = 'playlist.user_max_playlists';
|
|
|
|
final public const MAX_TRACKS_QUALIFIED = 'playlist.playlist_max_tracks';
|
|
}
|