-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
93 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
15 changes: 15 additions & 0 deletions
15
KkuMulKum/Network/DTO/Model/Auth/ResissueResponseModel.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
15
KkuMulKum/Network/DTO/Model/Auth/SocialLoginRequestModel.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
15
KkuMulKum/Network/DTO/Model/Auth/SocialLoginResponceModle.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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? | ||
} |
26 changes: 26 additions & 0 deletions
26
KkuMulKum/Network/DTO/Model/Users/LoginUserResponseModel.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// | ||
// LoginUserResponseModel.swift | ||
// KkuMulKum | ||
// | ||
// Created by 김진웅 on 7/8/24. | ||
// | ||
|
||
import Foundation | ||
|
||
struct LoginUserResponseModel: Codable { | ||
let name: String | ||
let level: Int | ||
let promiseCount: Int | ||
let tardyCount: Int | ||
let tardySum: Int | ||
let profileImageURL: String | ||
|
||
enum CodingKeys: String, CodingKey { | ||
case name | ||
case level | ||
case promiseCount | ||
case tardyCount | ||
case tardySum | ||
case profileImageURL = "profileImg" | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
KkuMulKum/Network/DTO/Model/Users/UpdateProfileNameModel.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// | ||
// UpdateProfileNameModel.swift | ||
// KkuMulKum | ||
// | ||
// Created by 김진웅 on 7/8/24. | ||
// | ||
|
||
import Foundation | ||
|
||
struct UpdateProfileNameModel: Codable { | ||
let name: String | ||
} |
This file was deleted.
Oops, something went wrong.