File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
presentation/src/main/java/com/threegap/bitnagil/presentation/home/model Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ sealed class HomeIntent : MviIntent {
1313 data class DeleteRoutineOptimistically (val routineId : String ) : HomeIntent()
1414 data class ConfirmRoutineDeletion (val routineId : String ) : HomeIntent()
1515 data class RestoreRoutinesAfterDeleteFailure (val backupRoutines : RoutinesUiModel ) : HomeIntent()
16+ data class DeleteRoutineByDayOptimistically (val routineId : String , val performedDate : String ) : HomeIntent()
17+ data class ConfirmRoutineByDayDeletion (val routineId : String , val performedDate : String ) : HomeIntent()
18+ data class RestoreRoutinesAfterDeleteByDayFailure (val backupRoutines : RoutinesUiModel ) : HomeIntent()
1619 data class ShowRoutineDetailsBottomSheet (val routine : RoutineUiModel ) : HomeIntent()
1720 data class ShowDeleteConfirmDialog (val routine : RoutineUiModel ) : HomeIntent()
1821 data object OnPreviousWeekClick : HomeIntent ()
You can’t perform that action at this time.
0 commit comments