-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor: Add request body for create, and changed migrate elem body.
- Loading branch information
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
src/main/kotlin/com/wafflestudio/csereal/core/admissions/api/req/AdmissionMigrateElem.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,11 @@ | ||
package com.wafflestudio.csereal.core.admissions.api.req | ||
|
||
import org.jetbrains.annotations.NotNull | ||
|
||
data class AdmissionMigrateElem( | ||
@field:NotNull val name: String?, | ||
val mainType: String, | ||
val postType: String, | ||
val language: String, | ||
@field:NotNull val description: String? | ||
) |
9 changes: 9 additions & 0 deletions
9
src/main/kotlin/com/wafflestudio/csereal/core/admissions/api/req/AdmissionReqBody.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,9 @@ | ||
package com.wafflestudio.csereal.core.admissions.api.req | ||
|
||
import org.jetbrains.annotations.NotNull | ||
|
||
data class AdmissionReqBody( | ||
@field:NotNull val name: String?, | ||
val language: String = "ko", | ||
@field:NotNull val description: String? | ||
) |