Files
sodalive-ios/SodaLive/Sources/Follow/GetCreatorFollowingAllListResponse.swift
Yu Sung 6c8f3eb8bb 팔로잉/팔로워 리스트 - 팔로우와 알림설정
- 팔로잉 상태에서 알림 켜기/끄기 상태 추가
2024-09-23 17:54:35 +09:00

22 lines
432 B
Swift

//
// 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
var isFollow: Bool
var isNotify: Bool
}