비밀번호 찾기 페이지

This commit is contained in:
Yu Sung
2023-08-09 21:03:42 +09:00
parent 6953ce3e3e
commit 10aebcc981
11 changed files with 257 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
//
// ApiResponseWithoutData.swift
// SodaLive
//
// Created by klaus on 2023/08/09.
//
import Foundation
struct ApiResponseWithoutData: Decodable {
let success: Bool
let message: String?
let errorProperty: String?
}