fix: Rename DebtorAccount to TransactionAccount
This commit is contained in:
@@ -15,11 +15,11 @@ public record BookedTransaction(
|
||||
{
|
||||
public string? DebtorName { get; init; }
|
||||
|
||||
public DebtorAccount? DebtorAccount { get; init; }
|
||||
public TransactionAccount? DebtorAccount { get; init; }
|
||||
|
||||
public string? CreditorName { get; init; }
|
||||
|
||||
public DebtorAccount? CreditorAccount { get; init; }
|
||||
public TransactionAccount? CreditorAccount { get; init; }
|
||||
|
||||
public string? BankTransactionCode { get; init; }
|
||||
|
||||
|
||||
+1
-1
@@ -4,4 +4,4 @@
|
||||
|
||||
namespace VMelnalksnis.NordigenDotNet.Accounts;
|
||||
|
||||
public record DebtorAccount(string Iban);
|
||||
public record TransactionAccount(string Iban);
|
||||
Reference in New Issue
Block a user