21 lines
435 B
Kotlin
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
|
|
}
|
|
}
|