koel/tests/Feature/V6/SongTest.php

27 lines
440 B
PHP
Raw Normal View History

2022-07-26 20:23:34 +00:00
<?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',
];
}