25 lines
491 B
Swift
25 lines
491 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 donationCoin: Int
|
|
let date: String
|
|
let replyCount: Int
|
|
}
|