fix: Rename DebtorAccount to TransactionAccount

This commit is contained in:
Valters Melnalksnis
2022-06-17 20:40:44 +03:00
parent 31b76395f0
commit c0131b73db
2 changed files with 3 additions and 3 deletions
@@ -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; }
@@ -4,4 +4,4 @@
namespace VMelnalksnis.NordigenDotNet.Accounts;
public record DebtorAccount(string Iban);
public record TransactionAccount(string Iban);