9 lines
191 B
Kotlin
9 lines
191 B
Kotlin
package space.luminic.budgerapp.mappers
|
|
|
|
import org.bson.Document
|
|
import space.luminic.budgerapp.models.Budget
|
|
|
|
interface FromDocumentMapper {
|
|
|
|
fun fromDocument(document: Document): Any
|
|
} |