sodalive-ios/SodaLive/Sources/Explorer/Profile/FollowerList/GetFollowerListResponse.swift

21 lines
376 B
Swift

//
// 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?
}