AndroidAPS/app/src/main/java/info/nightscout/androidaps/events/EventNsFood.kt
2020-01-01 23:23:16 +01:00

21 lines
435 B
Kotlin

package info.nightscout.androidaps.events
import org.json.JSONArray
/**
* Event which is published with data fetched from NightScout specific for the
* Food-class.
*
* Payload is the from NS retrieved JSON-String which should be handled by all
* subscriber.
*/
class EventNsFood(val mode: Int, val foods: JSONArray) : Event() {
companion object {
val ADD = 0
val UPDATE = 1
val REMOVE = 2
}
}