mirror of
https://github.com/revanced/revanced-patcher.git
synced 2025-04-30 05:14:26 +02:00
8 lines
154 B
Kotlin
8 lines
154 B
Kotlin
package net.revanced.patcher.resolver
|
|
|
|
internal data class ScanResult(
|
|
val found: Boolean,
|
|
val startIndex: Int? = 0,
|
|
val endIndex: Int? = 0
|
|
)
|