meili-epfl/Meili

View on GitHub
app/src/main/java/com/github/epfl/meili/models/PushNotification.kt

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
package com.github.epfl.meili.models

/**
 * Targeted Notification data
 */
data class PushNotification (
    //encapsulation was a better solution than inheritance in this case
    val data: NotificationData,
    //added the to field so we have a target to notify
    val to: String
)