Files
sodalive-ios/SodaLive/Sources/Explorer/Profile/Detail/GetCreatorDetailResponse.swift

27 lines
590 B
Swift

//
// 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
}