From 374818f748a1774ae36c9f3dfe70aa479dbbef2f Mon Sep 17 00:00:00 2001 From: dankito Date: Wed, 5 Aug 2020 14:31:36 +0200 Subject: [PATCH] Made bankCode and customerId settable --- .../kotlin/net/dankito/banking/ui/model/Customer.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/BankingUiCommon/src/commonMain/kotlin/net/dankito/banking/ui/model/Customer.kt b/ui/BankingUiCommon/src/commonMain/kotlin/net/dankito/banking/ui/model/Customer.kt index 911f25b6..264073d8 100644 --- a/ui/BankingUiCommon/src/commonMain/kotlin/net/dankito/banking/ui/model/Customer.kt +++ b/ui/BankingUiCommon/src/commonMain/kotlin/net/dankito/banking/ui/model/Customer.kt @@ -12,8 +12,8 @@ import net.dankito.utils.multiplatform.UUID //@JsonIdentityInfo(property = "technicalId", generator = ObjectIdGenerators.PropertyGenerator::class) // to avoid stack overflow due to circular references open class Customer( - open val bankCode: String, - open val customerId: String, + open var bankCode: String, + open var customerId: String, open var password: String, open var finTsServerAddress: String, open var bankName: String,