11 lines
276 B
Kotlin
11 lines
276 B
Kotlin
package com.arpa.hndahesudintocctmsdriver.cuspop
|
|
|
|
/**
|
|
* @ClassName MyRequestCallback
|
|
* @Author john
|
|
* @Date 2024/10/28 17:19
|
|
* @Description TODO
|
|
*/
|
|
interface MyRequestCallback{
|
|
fun onResult(allGranted: Boolean, grantedList: List<String?>, deniedList: List<String?>)
|
|
} |