크리에이터 채널 페이지 추가
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
//
|
||||
// GetFollowerListResponse.swift
|
||||
// SodaLive
|
||||
//
|
||||
// Created by klaus on 2023/08/11.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
struct GetFollowerListResponse: Decodable {
|
||||
let totalCount: Int
|
||||
let items: [GetFollowerListResponseItem]
|
||||
}
|
||||
|
||||
struct GetFollowerListResponseItem: Decodable {
|
||||
let userId: Int
|
||||
let profileImage: String
|
||||
let nickname: String
|
||||
let isFollow: Bool?
|
||||
}
|
Reference in New Issue
Block a user