• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.android.systemui.biometrics.ui.viewmodel
2 
3 /** Metadata about the number of credential attempts the user has left [remaining], if known. */
4 data class RemainingAttempts(val remaining: Int? = null, val message: String = "")
5