PredictionLineData.swift 209 B

12345678910
  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. }