mirror of
https://github.com/koel/koel
synced 2024-12-29 22:13:06 +00:00
26 lines
440 B
PHP
26 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',
|
|
];
|
|
}
|