Pixelcat-App-Android/app/src/main/kotlin/at/connyduck/pixelcat/components/notifications/NotificationsViewModel.kt

12 lines
195 B
Kotlin
Raw Normal View History

2020-06-12 15:44:45 +02:00
package at.connyduck.pixelcat.components.notifications
import androidx.lifecycle.ViewModel
import javax.inject.Inject
class NotificationsViewModel @Inject constructor(
): ViewModel() {
}