Prescription.swift 350 B

1234567891011121314151617
  1. //
  2. // Prescription.swift
  3. // LoopKit
  4. //
  5. // Created by Rick Pasetto on 7/22/20.
  6. // Copyright © 2020 LoopKit Authors. All rights reserved.
  7. //
  8. import Foundation
  9. public protocol Prescription {
  10. /// Date prescription was prescribed
  11. var datePrescribed: Date { get }
  12. /// Name of clinician prescribing
  13. var providerName: String { get }
  14. }