Files

25 lines
511 B
Swift
Raw Permalink Normal View History

//
// HomeAssistantDevice.swift
// XIONControlPanel
//
// Created by James Magahern on 6/18/25.
// Copyright © 2025 XION. All rights reserved.
//
import Foundation
2025-06-19 20:43:05 -07:00
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
}
}