SDPTeam15/PolyEvents

View on GitHub
app/src/main/java/com/github/sdpteam15/polyevents/model/database/remote/adapter/AdapterInterface.kt

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
package com.github.sdpteam15.polyevents.model.database.remote.adapter

/**
 * A interface for converting between user entities in our code and
 * documents in the database. Not unlike the DTO (Data
 * transfer object) concept.
 */
interface AdapterInterface<T> : AdapterToDocumentInterface<T>, AdapterFromDocumentInterface<T>