오디션 메인

- 페이지 추가
This commit is contained in:
Yu Sung
2025-01-06 14:34:42 +09:00
parent 5c3bf18d27
commit 3d8817275c
6 changed files with 303 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
//
// GetAuditionListResponse.swift
// SodaLive
//
// Created by klaus on 1/5/25.
//
struct GetAuditionListResponse: Decodable {
let inProgressCount: Int
let completedCount: Int
let items: [GetAuditionListItem]
}
struct GetAuditionListItem: Decodable {
let id: Int
let title: String
let imageUrl: String
let isOff: Bool
}