Skip to content

Commit

Permalink
Merge pull request #141 from OMZigak/feat/#134-authService
Browse files Browse the repository at this point in the history
[feat] Auth네트워크 Request, Response Model 구현
  • Loading branch information
hooni0918 authored Jul 8, 2024
2 parents 9fb7b5b + f437062 commit 0cc781a
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 8 deletions.
8 changes: 0 additions & 8 deletions KkuMulKum/Network/DTO/Model/Auth/AuthTemp.swift

This file was deleted.

15 changes: 15 additions & 0 deletions KkuMulKum/Network/DTO/Model/Auth/ResissueResponseModel.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
//
// ResissueResponseModel.swift
// KkuMulKum
//
// Created by 이지훈 on 7/8/24.
//

import Foundation


// MARK: - ReissueResponseModel

struct ReissueResponseModel: Codable {
let accessToken, refreshToken: String?
}
15 changes: 15 additions & 0 deletions KkuMulKum/Network/DTO/Model/Auth/SocialLoginRequestModel.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
//
// AuthTemp.swift
// KkuMulKum
//
// Created by 김진웅 on 7/8/24.
//

import Foundation


// MARK: - SocialLoginRequestModel

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

import Foundation


// MARK: - SocialLoginResponseModel

struct SocialLoginResponseModel: Codable {
let name, accessToken, refreshToken: String?
}

0 comments on commit 0cc781a

Please sign in to comment.