feat(character-detail): 캐릭터 정보 추가

- mbti, 나이, 성별 추가
This commit is contained in:
Yu Sung
2025-09-05 18:20:04 +09:00
parent 557a4421e7
commit 70b7801074
2 changed files with 75 additions and 7 deletions

View File

@@ -10,6 +10,8 @@ struct CharacterDetailResponse: Decodable {
let name: String
let description: String
let mbti: String?
let gender: String?
let age: Int?
let imageUrl: String
let personalities: CharacterPersonalityResponse?
let backgrounds: CharacterBackgroundResponse?