라이브방 - 라이브 후원랭킹 리스트

- 방장은 일반후원 / 비밀후원 캔을 나눠서 보이도록 수정
This commit is contained in:
Yu Sung
2024-10-28 18:25:22 +09:00
parent 5b55c9d2e3
commit 54f70609c5
5 changed files with 81 additions and 9 deletions

View File

@@ -11,6 +11,7 @@ struct GetLiveRoomDonationStatusResponse: Decodable {
let donationList: [GetLiveRoomDonationItem]
let totalCount: Int
let totalCan: Int
let totalSecretCan: Int
}
struct GetLiveRoomDonationItem: Decodable {
@@ -18,4 +19,5 @@ struct GetLiveRoomDonationItem: Decodable {
let nickname: String
let userId: Int
let can: Int
let secretCan: Int
}