PredictionLineData.swift 210 B

1234567891011
  1. import Foundation
  2. public struct PredictionLineData: Identifiable, Hashable {
  3. public var id = UUID()
  4. let type: PredictionType
  5. let values: [BloodGlucose]
  6. func count() -> Int { values.count }
  7. }