isNotice -> isNotify로 변경

This commit is contained in:
Klaus 2024-09-20 12:04:17 +09:00
parent 2a70a7824f
commit 738f1ea9fe
2 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ class ContentSeriesService(
nickname = series.member!!.nickname, nickname = series.member!!.nickname,
profileImage = "$coverImageHost/${series.member!!.profileImage}", profileImage = "$coverImageHost/${series.member!!.profileImage}",
isFollow = creatorFollowing?.isFollow ?: false, isFollow = creatorFollowing?.isFollow ?: false,
isNotice = creatorFollowing?.isNotify ?: false isNotify = creatorFollowing?.isNotify ?: false
), ),
rentalMinPrice = rentalMinPrice, rentalMinPrice = rentalMinPrice,
rentalMaxPrice = rentalMaxPrice, rentalMaxPrice = rentalMaxPrice,

View File

@ -28,6 +28,6 @@ data class GetSeriesDetailResponse(
val nickname: String, val nickname: String,
val profileImage: String, val profileImage: String,
val isFollow: Boolean, val isFollow: Boolean,
val isNotice: Boolean val isNotify: Boolean
) )
} }