koel/tests/Feature/V6/SongTest.php
2022-07-26 22:23:34 +02:00

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',
];
}