투표기능 추가

This commit is contained in:
Yu Sung
2025-01-07 19:59:19 +09:00
parent a2b7fef39e
commit 7e13689763
7 changed files with 112 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
//
// VoteAuditionApplicantRequest.swift
// SodaLive
//
// Created by klaus on 1/7/25.
//
import Foundation
struct VoteAuditionApplicantRequest: Encodable {
let applicantId: Int
let container: String = "ios"
let timezone: String = TimeZone.current.identifier
}