프로필 변경 페이지 추가

This commit is contained in:
Yu Sung
2023-08-19 17:01:35 +09:00
parent c89beb91f5
commit aa66951cb4
25 changed files with 1579 additions and 6 deletions

View File

@@ -0,0 +1,24 @@
//
// GetProfileResponse.swift
// SodaLive
//
// Created by klaus on 2023/08/19.
//
import Foundation
struct GetProfileResponse: Decodable {
let userId: Int
let email: String
let nickname: String
let gender: Gender
var profileUrl: String
let chargeCan: Int
let rewardCan: Int
let youtubeUrl: String?
let instagramUrl: String?
let blogUrl: String?
let websiteUrl: String?
let introduce: String
let tags: [String]
}