-
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
4 changed files
with
32 additions
and
34 deletions.
There are no files selected for viewing
24 changes: 12 additions & 12 deletions
24
domain/src/main/kotlin/com/going/domain/entity/ProfileMock.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,15 +1,15 @@ | ||
package com.going.domain.entity | ||
|
||
data class ProfileMock ( | ||
val tendencyTitle: String, | ||
val tendencySubTitle: String, | ||
data class ProfileMock( | ||
val profileTitle: String, | ||
val profileSubTitle: String, | ||
val tags: List<String>, | ||
val tendencyBoxInfo: List<BoxInfo>, | ||
) { | ||
data class BoxInfo( | ||
val title: String, | ||
val first: String, | ||
val second: String, | ||
val third: String, | ||
) | ||
} | ||
val profileBoxInfo: List<BoxInfo>, | ||
) { | ||
data class BoxInfo( | ||
val title: String, | ||
val first: String, | ||
val second: String, | ||
val third: 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