From 31b0025c00b3f483b1dc7aeaad167704742c7db2 Mon Sep 17 00:00:00 2001 From: jeongjaino Date: Sun, 4 Aug 2024 23:10:37 +0900 Subject: [PATCH] =?UTF-8?q?[FEATURE]#74=20:=20=EC=B0=A8=EB=8B=A8=EB=90=9C?= =?UTF-8?q?=20=EB=A9=94=EC=84=B8=EC=A7=80=20=EB=AA=A9=EB=A1=9D=20BlockedMe?= =?UTF-8?q?ssageList=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/bff/wespot/entire/screen/state/EntireUiState.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/feature/entire/src/main/java/com/bff/wespot/entire/screen/state/EntireUiState.kt b/feature/entire/src/main/java/com/bff/wespot/entire/screen/state/EntireUiState.kt index 14cbb35c..93146076 100644 --- a/feature/entire/src/main/java/com/bff/wespot/entire/screen/state/EntireUiState.kt +++ b/feature/entire/src/main/java/com/bff/wespot/entire/screen/state/EntireUiState.kt @@ -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 = listOf(), val revokeConfirmed: Boolean = false, - val blockList: List = listOf(), + val blockedMessageList: List = listOf(), val unBlockList: List = listOf(), )