오디션 배역 상세 페이지 추가

This commit is contained in:
Yu Sung
2025-01-07 01:10:20 +09:00
parent 739a9b42b7
commit 36028aa108
19 changed files with 531 additions and 5 deletions

View File

@@ -0,0 +1,20 @@
//
// GetAuditionApplicantListResponse.swift
// SodaLive
//
// Created by klaus on 1/6/25.
//
struct GetAuditionApplicantListResponse: Decodable {
let totalCount: Int
let items: [GetAuditionRoleApplicantItem]
}
struct GetAuditionRoleApplicantItem: Decodable {
let applicantId: Int
let memberId: Int
let nickname: String
let profileImageUrl: String
let voiceUrl: String
let voteCount: Int
}