clean-code-javascript icon indicating copy to clipboard operation
clean-code-javascript copied to clipboard

SmartDevice.kt

Open myltik1702 opened this issue 2 months ago • 0 comments

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 }

myltik1702 avatar Nov 26 '25 06:11 myltik1702