| 123456789101112131415 |
- //
- // SelectBasalProfileMessageBody.swift
- // MinimedKit
- //
- // Copyright © 2017 Pete Schwamb. All rights reserved.
- //
- import Foundation
- public class SelectBasalProfileMessageBody: CarelinkLongMessageBody {
- public convenience init(newProfile: BasalProfile) {
- self.init(rxData: Data([1, newProfile.rawValue]))!
- }
- }
|