회원가입 페이지

This commit is contained in:
Yu Sung
2023-08-09 19:27:53 +09:00
parent 1bc62f8fbd
commit 6953ce3e3e
19 changed files with 830 additions and 8 deletions

View File

@@ -0,0 +1,18 @@
//
// SignUpRequest.swift
// SodaLive
//
// Created by klaus on 2023/08/09.
//
import Foundation
struct SignUpRequest: Encodable {
let email: String
let password: String
let nickname: String
let gender: Gender
let isAgreeTermsOfService: Bool
let isAgreePrivacyPolicy: Bool
let container: String = "ios"
}