Skip to content

Commit

Permalink
[feat] #4 home contract
Browse files Browse the repository at this point in the history
  • Loading branch information
Sangwook123 committed May 1, 2024
1 parent b7ab7fd commit a1969cb
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions feature/home/src/main/java/org/sopt/home/HomeContract.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package org.sopt.home

import org.sopt.model.Friend

data class HomeState(
val friendList: List<Friend> = emptyList(),
val query: String = "",
val registeredHobby: String = "",
val registeredName: String = "",
val showBottomSheet: Boolean = false,
val showDeleteDialog: Pair<Boolean, Int> = Pair(false, 0),
val savingName: String = "",
val savingHobby: String = "",
)

sealed interface HomeSideEffect

0 comments on commit a1969cb

Please sign in to comment.