-
Notifications
You must be signed in to change notification settings - Fork 707
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
af009a1
commit e837a6f
Showing
4 changed files
with
74 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
core/datastore/src/commonMain/kotlin/org/mifos/mobile/core/datastore/model/AppSettings.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package org.mifos.mobile.core.datastore.model | ||
|
||
data class AppSettings( | ||
val tenant: String?, | ||
val baseUrl: String?, | ||
val passcode: String?, | ||
val appTheme: Int?, | ||
val language: String?, | ||
) |
6 changes: 6 additions & 0 deletions
6
core/datastore/src/commonMain/kotlin/org/mifos/mobile/core/datastore/model/User.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package org.mifos.mobile.core.datastore.model | ||
|
||
data class User( | ||
val userName: String?, | ||
val userId: Long?, | ||
) |
7 changes: 7 additions & 0 deletions
7
core/datastore/src/commonMain/kotlin/org/mifos/mobile/core/datastore/model/UserData.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package org.mifos.mobile.core.datastore.model | ||
|
||
data class UserData( | ||
val isAuthenticated: Boolean, | ||
val userName: String?, | ||
val clientId: Long?, | ||
) |