-
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.
Merge branch 'suyeon' into feat/#133-promise-service
- Loading branch information
Showing
16 changed files
with
211 additions
and
33 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? | ||
} |
12 changes: 12 additions & 0 deletions
12
KkuMulKum/Network/DTO/Model/Meetings/MakeMeetingsRequestModel.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 @@ | ||
// | ||
// MakeMeetingsRequestModel.swift | ||
// KkuMulKum | ||
// | ||
// Created by 예삐 on 7/8/24. | ||
// | ||
|
||
import Foundation | ||
|
||
struct MakeMeetingsRequestModel: Codable { | ||
let name: String | ||
} |
12 changes: 12 additions & 0 deletions
12
KkuMulKum/Network/DTO/Model/Meetings/MakeMeetingsResponseModel.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 @@ | ||
// | ||
// MakeMeetingsResponseModel.swift | ||
// KkuMulKum | ||
// | ||
// Created by 예삐 on 7/8/24. | ||
// | ||
|
||
import Foundation | ||
|
||
struct MakeMeetingsResponseModel: Codable { | ||
let invitationCode: String | ||
} |
15 changes: 15 additions & 0 deletions
15
KkuMulKum/Network/DTO/Model/Meetings/MeetingInfoResponseModel.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 @@ | ||
// | ||
// MeetingInfoResponseModel.swift | ||
// KkuMulKum | ||
// | ||
// Created by 예삐 on 7/8/24. | ||
// | ||
|
||
import Foundation | ||
|
||
struct MeetingInfoResponseModel: Codable { | ||
let id: Int | ||
let name, createdAt: String | ||
let metCount: Int | ||
let invitationCode: String | ||
} |
19 changes: 19 additions & 0 deletions
19
KkuMulKum/Network/DTO/Model/Meetings/MeetingListResponseModel.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,19 @@ | ||
// | ||
// MeetingListResponseModel.swift | ||
// KkuMulKum | ||
// | ||
// Created by 예삐 on 7/8/24. | ||
// | ||
|
||
import Foundation | ||
|
||
struct MeetingListResponseModel: Codable { | ||
let count: Int | ||
let meetings: [Meeting] | ||
} | ||
|
||
struct Meeting: Codable { | ||
let id: Int | ||
let name: String | ||
let memberCount: Int | ||
} |
24 changes: 24 additions & 0 deletions
24
KkuMulKum/Network/DTO/Model/Meetings/MeetingMembersResponseModel.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,24 @@ | ||
// | ||
// MembersOfMeetingResponseModel.swift | ||
// KkuMulKum | ||
// | ||
// Created by 예삐 on 7/8/24. | ||
// | ||
|
||
import Foundation | ||
|
||
struct MeetingMembersResponseModel: Codable { | ||
let memberCount: Int | ||
let members: [Member] | ||
} | ||
|
||
struct Member: Codable { | ||
let id: Int | ||
let name, profileImageURL: String | ||
|
||
enum CodingKeys: String, CodingKey { | ||
case id | ||
case name | ||
case profileImageURL = "profileImg" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
KkuMulKum/Network/DTO/Model/Meetings/RegisterMeetingsResponseModel.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 @@ | ||
// | ||
// RegisterMeetingsResponseModel.swift | ||
// KkuMulKum | ||
// | ||
// Created by 예삐 on 7/8/24. | ||
// | ||
|
||
import Foundation | ||
|
||
struct RegisterMeetingsRequestModel: Codable { | ||
let name: 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.