Files
sodalive-ios/SodaLive/Sources/Audition/Role/GetAuditionRoleDetailResponse.swift
2025-01-07 01:10:20 +09:00

17 lines
348 B
Swift

//
// GetAuditionRoleDetailResponse.swift
// SodaLive
//
// Created by klaus on 1/6/25.
//
struct GetAuditionRoleDetailResponse: Decodable {
let auditionRoleId: Int
let name: String
let imageUrl: String
let information: String
let originalWorkUrl: String
let auditionScriptUrl: String
let isAlreadyApplicant: Bool
}