test #16

Merged
klaus merged 3 commits from test into main 2023-08-25 07:50:55 +00:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit d865ec3ef8 - Show all commits

View File

@ -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
)

View File

@ -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
)