Battery.swift 187 B

12345678910111213
  1. import Foundation
  2. struct Battery: JSON {
  3. let percent: Int?
  4. let voltage: Decimal?
  5. let string: BatteryState
  6. }
  7. enum BatteryState: String, JSON {
  8. case normal
  9. case low
  10. }