SupportedInsulinModelSettings.swift 466 B

1234567891011121314151617
  1. //
  2. // SupportedInsulinModelSettings.swift
  3. // LoopKitUI
  4. //
  5. // Created by Rick Pasetto on 7/20/20.
  6. // Copyright © 2020 LoopKit Authors. All rights reserved.
  7. //
  8. public struct SupportedInsulinModelSettings {
  9. public let fiaspModelEnabled: Bool
  10. public let walshModelEnabled: Bool
  11. public init(fiaspModelEnabled: Bool, walshModelEnabled: Bool) {
  12. self.fiaspModelEnabled = fiaspModelEnabled
  13. self.walshModelEnabled = walshModelEnabled
  14. }
  15. }