some fix on SongSResponseDTO

- add @Serializable annotation
This commit is contained in:
dalbodeule
2024-08-24 13:57:59 +09:00
parent 8bbd163458
commit 22bbd05aff

View File

@@ -20,6 +20,7 @@ data class SongsDTO(
val reqName: String
)
@Serializable
data class SongsResponseDTO(
val current: SongsDTO? = null,
val next: List<SongsDTO> = emptyList()