-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feat] #224 리뷰 작성, 빵집 상세뷰 BreadTypsChips 동적 생성
- Loading branch information
Showing
7 changed files
with
57 additions
and
34 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
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
13 changes: 3 additions & 10 deletions
13
app/src/main/java/com/sopt/geonppang/presentation/model/BakeryReviewWritingInfo.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,21 +1,14 @@ | ||
package com.sopt.geonppang.presentation.model | ||
|
||
import android.os.Parcelable | ||
import com.sopt.geonppang.presentation.type.BreadFilterType | ||
import kotlinx.android.parcel.Parcelize | ||
|
||
@Parcelize | ||
data class BakeryReviewWritingInfo( | ||
val bakeryName: String, | ||
val bakeryPicture: String, | ||
val breadType: BreadType?, | ||
val breadTypeList: List<BreadFilterType>, | ||
val firstNearestStation: String, | ||
val secondNearestStation: String?, | ||
) : Parcelable { | ||
@Parcelize | ||
data class BreadType( | ||
val isGlutenFree: Boolean, | ||
val isVegan: Boolean, | ||
val isNutFree: Boolean, | ||
val isSugarFree: Boolean, | ||
) : Parcelable | ||
} | ||
) : Parcelable |
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