PredictionLineData.swift 153 B

12345678
  1. import Foundation
  2. struct PredictionLineData: Identifiable, Hashable {
  3. var id = UUID()
  4. let type: PredictionType
  5. var values: [BloodGlucose]
  6. }