This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 712
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
d298dbe
commit 78d13f9
Showing
11 changed files
with
115 additions
and
1 deletion.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
app/src/main/java/com/ivy/wallet/domain/data/IvyWalletCompleteData.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 |
---|---|---|
@@ -1,15 +1,25 @@ | ||
package com.ivy.wallet.domain.data | ||
|
||
import com.google.gson.annotations.SerializedName | ||
import com.ivy.wallet.io.persistence.data.* | ||
|
||
data class IvyWalletCompleteData( | ||
@SerializedName("accounts") | ||
val accounts: List<AccountEntity> = emptyList(), | ||
@SerializedName("budgets") | ||
val budgets: List<BudgetEntity> = emptyList(), | ||
@SerializedName("categories") | ||
val categories: List<CategoryEntity> = emptyList(), | ||
@SerializedName("loanRecords") | ||
val loanRecords: List<LoanRecordEntity> = emptyList(), | ||
@SerializedName("loans") | ||
val loans: List<LoanEntity> = emptyList(), | ||
@SerializedName("plannedPaymentRules") | ||
val plannedPaymentRules: List<PlannedPaymentRuleEntity> = emptyList(), | ||
@SerializedName("settings") | ||
val settings: List<SettingsEntity> = emptyList(), | ||
@SerializedName("transactions") | ||
val transactions: List<TransactionEntity> = emptyList(), | ||
@SerializedName("sharedPrefs") | ||
val sharedPrefs: HashMap<String, String> = HashMap() | ||
) |
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
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
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
5 changes: 5 additions & 0 deletions
5
app/src/main/java/com/ivy/wallet/io/persistence/data/ExchangeRateEntity.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
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
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
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
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
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
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