This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2019-09-19 07:33:16 +02:00
|
|
|
package com.denizd.substitutionplan.data
|
|
|
|
|
|
2019-09-22 19:46:20 +02:00
|
|
|
/**
|
|
|
|
|
* Enum class for declaring Firebase Cloud Messaging topics without using the raw strings
|
|
|
|
|
* throughout the project
|
|
|
|
|
*/
|
2019-09-19 07:33:16 +02:00
|
|
|
internal enum class Topic(val tag: String) {
|
|
|
|
|
ANDROID("substitutions-android"),
|
|
|
|
|
BROADCAST("substitutions-broadcast"),
|
|
|
|
|
IOS("substitutions-ios"),
|
|
|
|
|
DEVELOPMENT("substitutions-debug")
|
|
|
|
|
}
|