유저 관심사, 라이브 관심사 - 연령제한 설정 추가
This commit is contained in:
parent
7af970ace4
commit
d865ec3ef8
|
@ -5,5 +5,6 @@ import com.querydsl.core.annotations.QueryProjection
|
|||
data class GetLiveTagResponse @QueryProjection constructor(
|
||||
val id: Long,
|
||||
val tag: String,
|
||||
val image: String
|
||||
val image: String,
|
||||
val isAdult: Boolean
|
||||
)
|
||||
|
|
|
@ -5,5 +5,6 @@ import com.querydsl.core.annotations.QueryProjection
|
|||
data class GetMemberTagResponse @QueryProjection constructor(
|
||||
val id: Long,
|
||||
val tag: String,
|
||||
val image: String
|
||||
val image: String,
|
||||
val isAdult: Boolean
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue