mirror of
https://github.com/koel/koel
synced 2024-12-26 04:23:05 +00:00
13 lines
206 B
PHP
13 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
|
|
{
|
|
}
|