mirror of
https://github.com/koel/koel
synced 2024-12-26 20:43:05 +00:00
14 lines
206 B
PHP
14 lines
206 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Requests\V6\API;
|
||
|
|
||
|
use App\Http\Requests\API\Request;
|
||
|
|
||
|
/**
|
||
|
* @property-read string $genre
|
||
|
* @property-read int $limit
|
||
|
*/
|
||
|
class FetchRandomSongsInGenreRequest extends Request
|
||
|
{
|
||
|
}
|