Prescription.swift 331 B

123456789101112131415
  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. public protocol Prescription {
  9. /// Date prescription was prescribed
  10. var datePrescribed: Date { get }
  11. /// Name of clinician prescribing
  12. var providerName: String { get }
  13. }