CarbRatios.swift 271 B

123456789101112131415161718
  1. import Foundation
  2. struct CarbRatios: JSON {
  3. let units: CarbUnit
  4. let schedule: [CarbRatioEntry]
  5. }
  6. struct CarbRatioEntry: JSON {
  7. let start: String
  8. let offset: Int
  9. let ratio: Decimal
  10. }
  11. enum CarbUnit: String, JSON {
  12. case grams
  13. case exchanges
  14. }