팔로잉 채널 전체 리스트 페이지 추가
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
//
|
||||
// GetCreatorFollowingAllListResponse.swift
|
||||
// SodaLive
|
||||
//
|
||||
// Created by klaus on 2023/08/19.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
struct GetCreatorFollowingAllListResponse: Decodable {
|
||||
let totalCount: Int
|
||||
let items: [GetCreatorFollowingAllListItem]
|
||||
}
|
||||
|
||||
struct GetCreatorFollowingAllListItem: Decodable {
|
||||
let creatorId: Int
|
||||
let nickname: String
|
||||
let profileImageUrl: String
|
||||
let isFollow: Bool
|
||||
}
|
Reference in New Issue
Block a user