25 lines
501 B
Swift
25 lines
501 B
Swift
//
|
|
// HomeAssistantDevice.swift
|
|
// XIONControlPanel
|
|
//
|
|
// Created by James Magahern on 6/18/25.
|
|
// Copyright © 2025 XION. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
class HomeAssistantDevice: Device
|
|
{
|
|
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
|
|
}
|
|
}
|