1 package com.android.systemui.biometrics.shared.model
2 
3 /**
4  * Metadata about the current user BiometricPrompt is being shown to.
5  *
6  * If the user's fallback credential is owned by another profile user the [deviceCredentialOwnerId]
7  * will differ from the user's [userId].
8  */
9 data class BiometricUserInfo(
10     val userId: Int,
11     val deviceCredentialOwnerId: Int = userId,
12 )
13