Variable name changes

This commit is contained in:
Stedd 2022-01-15 19:06:08 +01:00
parent bf3651300e
commit b8acdd8e48
2 changed files with 3 additions and 3 deletions

View File

@ -138,7 +138,7 @@ namespace CryptoCalc
public string Currency { get; set; } public string Currency { get; set; }
public float Balance { get; set; } public float Balance { get; set; }
public int DefaultWallet { get; set; } public int DefaultWallet { get; set; }
public string Notes { get; set; } public string Note { get; set; }
#endregion #endregion
@ -157,7 +157,7 @@ namespace CryptoCalc
Currency = _currency; Currency = _currency;
Balance = _balance; Balance = _balance;
DefaultWallet = _default; DefaultWallet = _default;
Notes = _note; Note = _note;
SetDBStrings(); SetDBStrings();
} }
@ -184,7 +184,7 @@ namespace CryptoCalc
+ $"@{nameof(Currency)}," + $"@{nameof(Currency)},"
+ $"@{nameof(Balance)}," + $"@{nameof(Balance)},"
+ $"@{nameof(DefaultWallet)}," + $"@{nameof(DefaultWallet)},"
+ $"@{nameof(Notes)}"; + $"@{nameof(Note)}";
} }
//public string FullInfo => $"{ Index.ToString() } { DateTimeString } { Currency } { Amount } { TransactionType }"; //public string FullInfo => $"{ Index.ToString() } { DateTimeString } { Currency } { Amount } { TransactionType }";

Binary file not shown.