Skip to content

Commit

Permalink
✨ :: accepted object 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
ImGaram committed Sep 18, 2023
1 parent b577b0d commit 8a41d8b
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package com.msg.presentation.viewmodel.util
sealed class Event<out T>(val data: T? = null) {
object Loading : Event<Nothing>()
class Success<T>(data: T? = null) : Event<T>(data = data)
object Accepted : Event<Nothing>()
object BadRequest : Event<Nothing>()
object Unauthorized : Event<Nothing>()
object ForBidden : Event<Nothing>()
Expand Down

0 comments on commit 8a41d8b

Please sign in to comment.