하트 랭킹 추가

This commit is contained in:
Yu Sung
2024-11-12 00:33:28 +09:00
parent fb5d7bd209
commit b4f99af291
9 changed files with 349 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
//
// GetLiveRoomHeartListResponse.swift
// SodaLive
//
// Created by klaus on 11/11/24.
//
struct GetLiveRoomHeartListResponse: Decodable {
let heartList: [GetLiveRoomHeartListItem]
let totalCount: Int
let totalHeart: Int
}
struct GetLiveRoomHeartListItem: Decodable {
let profileImage: String
let nickname: String
let heart: Int
}