Skip to content

Commit

Permalink
[FEATURE]#74 : 차단된 메세지 목록 BlockedMessageList로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongjaino committed Aug 4, 2024
1 parent 9510088 commit 31b0025
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package com.bff.wespot.entire.screen.state

import com.bff.wespot.model.message.response.Message
import com.bff.wespot.model.message.response.BlockedMessage
import com.bff.wespot.model.user.response.Profile

data class EntireUiState(
val profile: Profile = Profile(),
val revokeReasonList: List<String> = listOf(),
val revokeConfirmed: Boolean = false,
val blockList: List<Message> = listOf(),
val blockedMessageList: List<BlockedMessage> = listOf(),
val unBlockList: List<Int> = listOf(),
)

0 comments on commit 31b0025

Please sign in to comment.