feat(explorer): 크리에이터 상세정보 다이얼로그와 SNS 링크를 추가한다

This commit is contained in:
Yu Sung
2026-02-25 16:28:48 +09:00
parent 7ff9360b1e
commit e9bd1e7396
18 changed files with 449 additions and 7 deletions

View File

@@ -0,0 +1,26 @@
//
// GetCreatorDetailResponse.swift
// SodaLive
//
// Created by klaus on 2/25/26.
//
struct GetCreatorDetailResponse: Decodable {
let nickname: String
let profileImageUrl: String
let debutDate: String
let dday: String
let activitySummary: CreatorDetailActivitySummary
let instagramUrl: String
let fancimmUrl: String
let xurl: String
let youtubeUrl: String
let kakaoOpenChatUrl: String
}
struct CreatorDetailActivitySummary: Decodable {
let liveCount: Int
let liveTime: Int
let liveContributorCount: Int
let contentCount: Int
}