From 2afcaa30edd362b8623f5cb249d2e9141b7e6b27 Mon Sep 17 00:00:00 2001 From: Patrick Honkonen Date: Fri, 5 Apr 2024 12:57:17 -0400 Subject: [PATCH] Delete unused class `ItemData` --- .../feature/item/model/ItemData.kt | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 app/src/main/kotlin/com/x8bit/bitwarden/authenticator/ui/authenticator/feature/item/model/ItemData.kt diff --git a/app/src/main/kotlin/com/x8bit/bitwarden/authenticator/ui/authenticator/feature/item/model/ItemData.kt b/app/src/main/kotlin/com/x8bit/bitwarden/authenticator/ui/authenticator/feature/item/model/ItemData.kt deleted file mode 100644 index a29acaff2..000000000 --- a/app/src/main/kotlin/com/x8bit/bitwarden/authenticator/ui/authenticator/feature/item/model/ItemData.kt +++ /dev/null @@ -1,22 +0,0 @@ -package com.x8bit.bitwarden.authenticator.ui.authenticator.feature.item.model - -import android.os.Parcelable -import com.x8bit.bitwarden.authenticator.data.authenticator.datasource.disk.entity.AuthenticatorItemType -import com.x8bit.bitwarden.authenticator.ui.platform.base.util.Text -import kotlinx.parcelize.Parcelize - -/** - * Represents the item data displayed to users. - * - * @property issuer Name of the item provider. - * @property alertThresholdSeconds Threshold, in seconds, at which an Item is considered near - * expiration. - * @property totpCodeItemData TOTP data for the account. - */ -data class ItemData( - val type: AuthenticatorItemType, - val username: Text?, - val issuer: Text, - val alertThresholdSeconds: Int, - val totpCodeItemData: TotpCodeItemData?, -) \ No newline at end of file