feat: TTS 요청 시 필요한 값들을 정의한 DTO 클래스

This commit is contained in:
이상진 2025-08-20 21:15:42 +09:00
parent 67c724ddbd
commit 2134ca58f4

View File

@ -0,0 +1,8 @@
package com.sangdol.text_to_speech
data class ConvertSingleTextRequest(
val text: String,
val type: VoiceType,
val speakingRate: Double,
val order: Int
)