// // HomeAssistantDevice.swift // XIONControlPanel // // Created by James Magahern on 6/18/25. // Copyright © 2025 XION. All rights reserved. // import Foundation class HomeAssistantDevice: Device, Hashable { var name: String var serial: String var type: DeviceType var state: DeviceState init(name: String, serial: String, type: DeviceType, state: DeviceState) { self.name = name self.serial = serial self.type = type self.state = state } }