-
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.
- Loading branch information
1 parent
0d421a9
commit bc1dd45
Showing
4 changed files
with
34 additions
and
11 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
11 changes: 11 additions & 0 deletions
11
backend/src/main/kotlin/project/namjun/kim/robster/analysis/AnalysisDTO.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 project.namjun.kim.robster.analysis | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty | ||
|
||
data class AnalysisDTO( | ||
@JsonProperty("path") | ||
var requestPath: String, | ||
|
||
@JsonProperty("type") | ||
var requestType: String | ||
) |
7 changes: 7 additions & 0 deletions
7
backend/src/main/kotlin/project/namjun/kim/robster/analysis/AnalysisMapping.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 project.namjun.kim.robster.analysis | ||
|
||
data class AnalysisMapping( | ||
var id: String, | ||
var status: Boolean, | ||
var message: 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