| 1234567891011121314151617 |
- //
- // TestingScenarioInstance.swift
- // LoopTestingKit
- //
- // Created by Michael Pangburn on 4/20/19.
- // Copyright © 2019 LoopKit Authors. All rights reserved.
- //
- import LoopKit
- public struct TestingScenarioInstance {
- public var glucoseSamples: [NewGlucoseSample]
- public var pumpEvents: [NewPumpEvent]
- public var carbEntries: [NewCarbEntry]
- }
|