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