DeviceAction.swift 302 B

123456789101112131415
  1. //
  2. // DeviceAction.swift
  3. // LoopTestingKit
  4. //
  5. // Created by Nathaniel Hamming on 2023-04-19.
  6. // Copyright © 2023 LoopKit Authors. All rights reserved.
  7. //
  8. import Foundation
  9. public struct DeviceAction: Equatable, Codable {
  10. public let managerIdentifier: String
  11. public let details: String
  12. }