Skip to content

Commit

Permalink
Issue #202 feat: LoadingState 클래스 정의
Browse files Browse the repository at this point in the history
  • Loading branch information
TRASALBY committed Dec 12, 2022
1 parent e4517c1 commit c3e2a78
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ class LoginViewModel @Inject constructor(
}

enum class NetworkState {
NO_ERROR, BAD_INTERNET, PARSE_ERROR, WRONG_CONNECTION, OTHER_ERROR, SUCCESS, LOADING
NO_ERROR, BAD_INTERNET, PARSE_ERROR, WRONG_CONNECTION, OTHER_ERROR, SUCCESS
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.lateinit.rightweight.ui.model

enum class LoadingState {
NONE,
LOADING,
FAIL,
}

0 comments on commit c3e2a78

Please sign in to comment.