InformationBarEntryData.swift 169 B

123456789
  1. import Foundation
  2. struct InformationBarEntryData: Identifiable, Hashable {
  3. var id = UUID()
  4. let label: String
  5. let value: Double
  6. let type: APSDataTypes
  7. }