feat(explorer): 크리에이터 상세정보 다이얼로그와 SNS 링크를 추가한다
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user