]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/model/Data.java
show the number of accounts in the account list head item
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / model / Data.java
index 6d51287f35bfa6a74c138a15d4dbb0f83143b818..0bd50ebb771f4338f3851ea8eb9e27258908536d 100644 (file)
@@ -59,7 +59,10 @@ public final class Data {
     public static final MutableLiveData<Date> lastUpdateDate = new MutableLiveData<>(null);
     public static final MutableLiveData<Integer> lastUpdateTransactionCount =
             new MutableLiveData<>(0);
-    public static final ObservableValue<String> lastUpdateText = new ObservableValue<>();
+    public static final MutableLiveData<Integer> lastUpdateAccountCount = new MutableLiveData<>(0);
+    public static final ObservableValue<String> lastTransactionsUpdateText =
+            new ObservableValue<>();
+    public static final ObservableValue<String> lastAccountsUpdateText = new ObservableValue<>();
     private static final MutableLiveData<MobileLedgerProfile> profile =
             new InertMutableLiveData<>();
     private static final AtomicInteger backgroundTaskCount = new AtomicInteger(0);