Skip to content

Commit

Permalink
feat/#134 - Auth네트워크 Request, Response Model 구현
Browse files Browse the repository at this point in the history
응답, 요청 값 작성완료
  • Loading branch information
hooni0918 committed Jul 8, 2024
1 parent 9fb7b5b commit 560380e
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
13 changes: 13 additions & 0 deletions KkuMulKum/Network/DTO/Model/Auth/ResissueResponseModel.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
//
// ResissueResponseModel.swift
// KkuMulKum
//
// Created by 이지훈 on 7/8/24.
//

import Foundation

// MARK: - ResissueResponseModel
struct ResissueResponseModel: Codable {
let accessToken, refreshToken: String?
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@
//

import Foundation

struct SocialLoginRequestModel: Codable {
let provider: String?
}
13 changes: 13 additions & 0 deletions KkuMulKum/Network/DTO/Model/Auth/SocialLoginResponceModle.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
//
// SocialLoginResponceModle.swift
// KkuMulKum
//
// Created by 이지훈 on 7/8/24.
//

import Foundation

// MARK: - SocialLoginRequestModel
struct SocialLoginResponseModel: Codable {
let name, accessToken, refreshToken: String?
}

0 comments on commit 560380e

Please sign in to comment.