-
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
19 changed files
with
928 additions
and
647 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
app/src/main/java/umc/com/mobile/project/data/model/plan/CertificateResponse.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,13 @@ | ||
package umc.com.mobile.project.data.model.plan | ||
|
||
data class CertificateResponse( | ||
val isSuccess: Boolean, | ||
val code: String, | ||
val message: String, | ||
val result: List<CertificateUpdateInfo> | ||
) | ||
|
||
data class CertificateUpdateInfo( | ||
val certificateId: Long, | ||
val updatedAt: String | ||
) |
14 changes: 14 additions & 0 deletions
14
app/src/main/java/umc/com/mobile/project/data/model/plan/DeleteLicense.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,14 @@ | ||
package umc.com.mobile.project.data.model | ||
|
||
data class DeleteLicense( | ||
val isSuccess: Boolean, | ||
val code: String, | ||
val message: String, | ||
val result: List<DeleteItem> | ||
) | ||
|
||
data class DeleteItem( | ||
val certificateId: Long, | ||
val name: String, | ||
val date: String | ||
) |
7 changes: 7 additions & 0 deletions
7
app/src/main/java/umc/com/mobile/project/data/model/plan/TimeInfoResponse.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 umc.com.mobile.project.data.model.plan | ||
|
||
data class TimeInfoResponse( | ||
val type: String, | ||
val name: String, | ||
val credit:String, | ||
) |
16 changes: 16 additions & 0 deletions
16
app/src/main/java/umc/com/mobile/project/data/model/plan/UpTimeResponse.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,16 @@ | ||
package umc.com.mobile.project.data.model.plan | ||
|
||
data class UpTimeResponse( | ||
val isSuccess: Boolean, | ||
val code: String, | ||
val message: String, | ||
val result: List<upTimeResult>, | ||
) | ||
|
||
data class upTimeResult( | ||
val subjectId: Long, | ||
val type: String, | ||
val name: String, | ||
val credit: Long, | ||
) | ||
|
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
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.