diff --git a/DBClasses.cs b/DBClasses.cs index ce7179c..10f8db1 100644 --- a/DBClasses.cs +++ b/DBClasses.cs @@ -138,7 +138,7 @@ namespace CryptoCalc public string Currency { get; set; } public float Balance { get; set; } public int DefaultWallet { get; set; } - public string Notes { get; set; } + public string Note { get; set; } #endregion @@ -157,7 +157,7 @@ namespace CryptoCalc Currency = _currency; Balance = _balance; DefaultWallet = _default; - Notes = _note; + Note = _note; SetDBStrings(); } @@ -184,7 +184,7 @@ namespace CryptoCalc + $"@{nameof(Currency)}," + $"@{nameof(Balance)}," + $"@{nameof(DefaultWallet)}," - + $"@{nameof(Notes)}"; + + $"@{nameof(Note)}"; } //public string FullInfo => $"{ Index.ToString() } { DateTimeString } { Currency } { Amount } { TransactionType }"; diff --git a/wallet.db b/wallets.db similarity index 96% rename from wallet.db rename to wallets.db index 713854c..b50993f 100644 Binary files a/wallet.db and b/wallets.db differ