VancedManager/app/src/main/java/com/vanced/manager/domain/util/EntityMapper.kt

7 lines
123 B
Kotlin

package com.vanced.manager.domain.util
interface EntityMapper<T, Model> {
suspend fun mapToModel(entity: T): Model
}