Skip to content

Commit

Permalink
Merge branch 'fix/home_npe' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim-swit committed Mar 18, 2024
2 parents c47560b + d55e15f commit 4cf09aa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ data class RegisteredRestaurant(
val category: String, // 식당 카테고리
val userId: Int, // 식당 등록한 유저 id
val userNickName: String, // 식당 등록한 유저 닉네임
val userProfileImageUrl: String, // 식당 등록한 유저 프로필 이미지
val userProfileImageUrl: String?, // 식당 등록한 유저 프로필 이미지
val canDrinkLiquor: Boolean, // 식당 주류 판매 여부
val differenceInDistance: String, // 식당과의 거리
val groupId: Int,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ data class RegisteredRestaurantResponse(
@SerializedName("userNickName")
val userNickName: String = "", // 식당 등록한 유저 닉네임
@SerializedName("userProfileImageUrl")
val userProfileImageUrl: String = "", // 식당 등록한 유저 프로필 이미지
val userProfileImageUrl: String? = "", // 식당 등록한 유저 프로필 이미지
@SerializedName("canDrinkLiquor")
val canDrinkLiquor: Boolean = false, // 식당 주류 판매 여부
@SerializedName("differenceInDistance")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ data class RegisteredRestaurant(
val category: String, // 식당 카테고리
val userId: Int, // 식당 등록한 유저 id
val userNickName: String, // 식당 등록한 유저 닉네임
val userProfileImageUrl: String, // 식당 등록한 유저 프로필 이미지
val userProfileImageUrl: String?, // 식당 등록한 유저 프로필 이미지
val canDrinkLiquor: Boolean, // 식당 주류 판매 여부
val differenceInDistance: String, // 식당과의 거리
val groupId: Int,
Expand Down

0 comments on commit 4cf09aa

Please sign in to comment.