Sharingang/Sharingang-Android

View on GitHub
app/src/main/java/com/example/sharingang/utils/constants/NotificationFields.kt

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
package com.example.sharingang.utils.constants

interface NotificationFields {
    companion object {
        const val NEW_ITEM_CHANNEL_ID = "new_item_channel"
        const val NEW_ITEM_CHANNEL_NAME = "New Item"
        const val NEW_ITEM_TOPIC = "new_item"
        const val CHAT_CHANNEL_ID = "chat_channel"
        const val CHAT_CHANNEL_NAME = "Chat"
        const val CHAT_TOPIC = "chat"
    }
}