8 lines
No EOL
197 B
Kotlin
8 lines
No EOL
197 B
Kotlin
package info.nightscout.androidaps.events
|
|
|
|
class EventBTChange constructor(val state: Change, val deviceName: String) : Event() {
|
|
enum class Change {
|
|
CONNECT,
|
|
DISCONNECT
|
|
}
|
|
} |