크리에이터 채널 페이지 추가
This commit is contained in:
23
SodaLive/Sources/Explorer/Profile/GetCheersResponse.swift
Normal file
23
SodaLive/Sources/Explorer/Profile/GetCheersResponse.swift
Normal file
@@ -0,0 +1,23 @@
|
||||
//
|
||||
// GetCheersResponse.swift
|
||||
// SodaLive
|
||||
//
|
||||
// Created by klaus on 2023/08/11.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
struct GetCheersResponse: Decodable {
|
||||
let totalCount: Int
|
||||
let cheers: [GetCheersResponseItem]
|
||||
}
|
||||
|
||||
struct GetCheersResponseItem: Decodable {
|
||||
let cheersId: Int
|
||||
let nickname: String
|
||||
let profileUrl: String
|
||||
let content: String
|
||||
let date: String
|
||||
let replyList: [GetCheersResponseItem]
|
||||
}
|
||||
|
Reference in New Issue
Block a user