RemoteType.swift 299 B

12345678910111213141516
  1. //
  2. // RemoteType.swift
  3. // LoopFollow
  4. //
  5. // Created by Jonas Björkert on 2024-08-18.
  6. // Copyright © 2024 Jon Fawcett. All rights reserved.
  7. //
  8. import Foundation
  9. enum RemoteType: String, Codable {
  10. case none = "None"
  11. case nightscout = "Nightscout"
  12. case trc = "Trio Remote Control"
  13. }