mirror of
https://github.com/koel/koel
synced 2024-12-24 11:33:05 +00:00
13 lines
136 B
PHP
13 lines
136 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Requests\API;
|
||
|
|
||
|
use App\Models\Song;
|
||
|
|
||
|
/**
|
||
|
* @property Song song
|
||
|
*/
|
||
|
class SongLikeRequest extends Request
|
||
|
{
|
||
|
}
|