mirror of
https://github.com/koel/koel
synced 2024-12-26 04:23:05 +00:00
12 lines
152 B
PHP
12 lines
152 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Requests;
|
||
|
|
||
|
/**
|
||
|
* @property float $time
|
||
|
* @property string $api_token
|
||
|
*/
|
||
|
class SongPlayRequest extends AbstractRequest
|
||
|
{
|
||
|
}
|