Serializable instead of Any for data in PodEvent
This commit is contained in:
parent
dbff1c6e50
commit
0a013b6d2b
1 changed files with 3 additions and 1 deletions
|
@ -1,6 +1,8 @@
|
||||||
package info.nightscout.androidaps.plugins.pump.omnipod.dash.driver.event
|
package info.nightscout.androidaps.plugins.pump.omnipod.dash.driver.event
|
||||||
|
|
||||||
|
import java.io.Serializable
|
||||||
|
|
||||||
class PodEvent(
|
class PodEvent(
|
||||||
val type: PodEventType,
|
val type: PodEventType,
|
||||||
val data: Any?
|
val data: Serializable?
|
||||||
)
|
)
|
Loading…
Reference in a new issue