Fixed that iban and bic may be null

This commit is contained in:
dankito 2020-05-23 16:33:10 +02:00
parent 65dd57a73b
commit 3e2b4757df
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@ package net.dankito.banking.search
data class Remittee(
val name: String,
val iban: String,
val bic: String
val iban: String?,
val bic: String?
) {