feat(chat-character): 캐릭터 상세 조회 시 언어 코드 추가

This commit is contained in:
2025-11-26 11:53:40 +09:00
parent 899f2865b3
commit 503802bcce
2 changed files with 2 additions and 0 deletions

View File

@@ -171,6 +171,7 @@ class ChatCharacterController(
characterId = character.id!!,
name = character.name,
description = character.description,
languageCode = character.languageCode,
mbti = character.mbti,
gender = character.gender,
age = character.age,

View File

@@ -7,6 +7,7 @@ data class CharacterDetailResponse(
val characterId: Long,
val name: String,
val description: String,
val languageCode: String?,
val mbti: String?,
val gender: String?,
val age: Int?,