커뮤니티 게시물 등록 API 적용,
채널 프로필 API - 커뮤니티 게시물 추가
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
//
|
||||
// GetCommunityPostCommentListResponse.swift
|
||||
// SodaLive
|
||||
//
|
||||
// Created by klaus on 2023/12/19.
|
||||
//
|
||||
|
||||
struct GetCommunityPostCommentListResponse: Decodable {
|
||||
let totalCount: Int
|
||||
let items: [GetCommunityPostCommentListItem]
|
||||
}
|
||||
|
||||
struct GetCommunityPostCommentListItem: Decodable {
|
||||
let id: Int
|
||||
let writerId: Int
|
||||
let nickname: String
|
||||
let profileUrl: String
|
||||
let comment: String
|
||||
let date: String
|
||||
let replyCount: Int
|
||||
}
|
Reference in New Issue
Block a user