Skip to content

Commit

Permalink
Feature #38: UserDataStore
Browse files Browse the repository at this point in the history
  • Loading branch information
0se0 committed Jun 26, 2024
1 parent a2ea6f2 commit 74139e6
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions app/src/main/java/com/sopt/now/compose/data/local/UserDataStore.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.sopt.now.compose.data.local

interface UserDataStore {
var userId: String
var id: String
var password: String
var nickname: String
var phoneNumber: String
var isLoggedIn: Boolean
fun clearInfo()
}

0 comments on commit 74139e6

Please sign in to comment.