TimestampedPumpEvent.swift 281 B

1234567891011121314151617
  1. //
  2. // TimestampedPumpEvent.swift
  3. // RileyLink
  4. //
  5. // Created by Pete Schwamb on 3/8/16.
  6. // Copyright © 2016 Pete Schwamb. All rights reserved.
  7. //
  8. import Foundation
  9. public protocol TimestampedPumpEvent: PumpEvent {
  10. var timestamp: DateComponents {
  11. get
  12. }
  13. }