애플 로그인 기능 추가

This commit is contained in:
Yu Sung
2026-01-27 10:45:00 +09:00
parent 7e37fc6f57
commit 95cae7d0bf
5 changed files with 192 additions and 32 deletions

View File

@@ -0,0 +1,16 @@
//
// SocialLoginRequest.swift
// SodaLive
//
// Created by klaus on 2023/08/09.
//
import Foundation
struct SocialLoginRequest: Encodable {
let container: String
let pushToken: String?
let marketingPid: String?
let identityToken: String?
let nonce: String?
}