Dark Mode
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
package com.example.smarthome.model
data class SmartDevice( val id: String, val name: String, val type: DeviceType, var isOnline: Boolean = false, var status: String = "offline" )
enum class DeviceType { LIGHT, SOCKET, SENSOR, SPEAKER, OTHER }