Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feat] Auth네트워크 Request, Response Model 구현 #141

Merged
merged 3 commits into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions KkuMulKum/Network/DTO/Model/Auth/AuthTemp.swift

This file was deleted.

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

import Foundation


// MARK: - ReissueResponseModel
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

개행해주세요!

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: - SocialLoginRequestModel
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

마크는 Request로 되어있어용 ...


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