Files
sodalive-ios/SodaLive/Sources/Audition/Detail/GetAuditionDetailResponse.swift
2025-01-06 18:31:49 +09:00

22 lines
420 B
Swift

//
// GetAuditionDetailResponse.swift
// SodaLive
//
// Created by klaus on 1/6/25.
//
struct GetAuditionDetailResponse: Decodable {
let auditionId: Int
let title: String
let imageUrl: String
let information: String
let roleList: [GetAuditionRoleListData]
}
struct GetAuditionRoleListData: Decodable {
let roleId: Int
let name: String
let imageUrl: String
let isComplete: Bool
}