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
No known key found for this signature in database
GPG Key ID: EFA860D069C9FA65

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()