| 1234567891011121314151617181920212223 |
- //
- // GlucoseNotificationOption.swift
- // FreeAPS
- //
- // Created by Kimberlie Skandis on 1/18/25.
- //
- import Foundation
- public enum GlucoseNotificationsOption: String, JSON, CaseIterable, Identifiable, Codable, Hashable {
- public var id: String { rawValue }
- case disabled
- case alwaysEveryCGM
- case onlyAlarmLimits
- var displayName: String {
- switch self {
- case .disabled: return "Disabled"
- case .alwaysEveryCGM: return "Always"
- case .onlyAlarmLimits: return "Only Alarm Limits"
- }
- }
- }
|