Files
sodalive-ios/SodaLive/Sources/Content/Detail/Comment/GetAudioContentCommentListResponse.swift
Yu Sung 24f09d068d 콘텐츠 댓글 리스트
- 비밀댓글은 닉네임 옆에 '비밀댓글' 마크 추가
2024-08-30 17:47:44 +09:00

26 lines
513 B
Swift

//
// GetAudioContentCommentListResponse.swift
// SodaLive
//
// Created by klaus on 2023/08/11.
//
import Foundation
struct GetAudioContentCommentListResponse: Decodable {
let totalCount: Int
let items: [GetAudioContentCommentListItem]
}
struct GetAudioContentCommentListItem: Decodable {
let id: Int
let writerId: Int
let nickname: String
let profileUrl: String
let comment: String
let isSecret: Bool
let donationCan: Int
let date: String
let replyCount: Int
}