Changed property order a bit

This commit is contained in:
dankito 2024-09-05 22:28:03 +02:00
parent 4c860e7b20
commit 55767f88e4
1 changed files with 5 additions and 4 deletions

View File

@ -41,15 +41,16 @@ open class UserAccount(
val selectedTanMediumName: String? = null,
open val tanMedia: List<TanMedium> = listOf(),
var bankingGroup: BankingGroup? = null,
var iconUrl: String? = null,
var bankingGroup: BankingGroup? = null
) {
var wrongCredentialsEntered: Boolean = false
var userSetDisplayName: String? = null
var displayIndex: Int = 0
var iconUrl: String? = null
var wrongCredentialsEntered: Boolean = false
@get:JsonIgnore
open val displayName: String