-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #124 from INFRAcp/seungmin
[feat] #123 Project Accept & Reject & Delete API Connect
- Loading branch information
Showing
18 changed files
with
375 additions
and
34 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 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
7 changes: 7 additions & 0 deletions
7
app/src/main/java/com/example/infraandroid/myinfo/myideamanage/model/RequestAcceptData.kt
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,7 @@ | ||
package com.example.infraandroid.myinfo.myideamanage.model | ||
|
||
data class RequestAcceptData( | ||
val pj_inviteStatus: String, | ||
val pj_num: Int?, | ||
val user_id: String | ||
) |
6 changes: 6 additions & 0 deletions
6
.../main/java/com/example/infraandroid/myinfo/myideamanage/model/RequestDeleteProjectData.kt
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,6 @@ | ||
package com.example.infraandroid.myinfo.myideamanage.model | ||
|
||
data class RequestDeleteProjectData( | ||
val pj_num: Int?, | ||
val user_id: String | ||
) |
12 changes: 12 additions & 0 deletions
12
app/src/main/java/com/example/infraandroid/myinfo/myideamanage/model/ResponseAcceptData.kt
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 @@ | ||
package com.example.infraandroid.myinfo.myideamanage.model | ||
|
||
data class ResponseAcceptData( | ||
val code: Int, | ||
val isSuccess: Boolean, | ||
val message: String, | ||
val result: Result | ||
){ | ||
data class Result( | ||
val pj_inviteStatus: String | ||
) | ||
} |
12 changes: 12 additions & 0 deletions
12
...main/java/com/example/infraandroid/myinfo/myideamanage/model/ResponseDeleteProjectData.kt
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 @@ | ||
package com.example.infraandroid.myinfo.myideamanage.model | ||
|
||
data class ResponseDeleteProjectData( | ||
val code: Int, | ||
val isSuccess: Boolean, | ||
val message: String, | ||
val result: Result | ||
){ | ||
data class Result( | ||
val comment: String | ||
) | ||
} |
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 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
Oops, something went wrong.