mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
27 lines
440 B
PHP
27 lines
440 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Feature\V6;
|
||
|
|
||
|
class SongTest
|
||
|
{
|
||
|
public const JSON_STRUCTURE = [
|
||
|
'type',
|
||
|
'id',
|
||
|
'title',
|
||
|
'lyrics',
|
||
|
'album_id',
|
||
|
'album_name',
|
||
|
'artist_id',
|
||
|
'artist_name',
|
||
|
'album_artist_id',
|
||
|
'album_artist_name',
|
||
|
'album_cover',
|
||
|
'length',
|
||
|
'liked',
|
||
|
'play_count',
|
||
|
'track',
|
||
|
'disc',
|
||
|
'created_at',
|
||
|
];
|
||
|
}
|