Files
RSSuper/native-route/android/src/main/java/com/rssuper/services/HTTPAuthCredentials.kt
2026-03-30 11:26:33 -04:00

13 lines
240 B
Kotlin

package com.rssuper.services
import okhttp3.Credentials
data class HTTPAuthCredentials(
val username: String,
val password: String
) {
fun toCredentials(): String {
return Credentials.basic(username, password)
}
}