로그인 페이지

This commit is contained in:
Yu Sung
2023-08-09 19:04:26 +09:00
parent c9c1b5f3c3
commit 1bc62f8fbd
28 changed files with 697 additions and 20 deletions

View File

@@ -0,0 +1,15 @@
//
// ApiResponse.swift
// SodaLive
//
// Created by klaus on 2023/08/09.
//
import Foundation
struct ApiResponse<T: Decodable>: Decodable {
let success: Bool
let data: T?
let message: String?
let errorProperty: String?
}