Skip to content

Commit

Permalink
[fix/home_npe]: userProfileImageUrl Nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
dogdduddy authored and Jim-swit committed Mar 18, 2024
1 parent 2b5bab0 commit 3e93033
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 3e93033

Please sign in to comment.