PredictionLineData.swift 167 B

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