12 lines
266 B
Kotlin
12 lines
266 B
Kotlin
package com.gh.common.syncpage
|
|
|
|
interface ISyncAdapterHandler {
|
|
|
|
/**
|
|
* @param position position to query
|
|
* @return Pair first: item sync id
|
|
* Pair second: item data entity
|
|
*/
|
|
fun getSyncData(position: Int): Pair<String, Any>?
|
|
|
|
} |