-
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
25ea75c
commit 6e2f9f0
Showing
3 changed files
with
46 additions
and
6 deletions.
There are no files selected for viewing
15 changes: 14 additions & 1 deletion
15
...main/kotlin/com/bamyanggang/apimodule/domain/experience/application/dto/ExperienceYear.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 |
---|---|---|
@@ -1,7 +1,20 @@ | ||
package com.bamyanggang.apimodule.domain.experience.application.dto | ||
|
||
import java.util.* | ||
|
||
class ExperienceYear { | ||
data class Response( | ||
val years : List<Int> | ||
val years : List<Int>, | ||
val yearTagInfos: List<YearTagInfo> | ||
) | ||
|
||
data class YearTagInfo( | ||
val year: Int, | ||
val tags: List<TagDetail> | ||
) | ||
|
||
data class TagDetail( | ||
val id: UUID, | ||
val name: 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