| 1234567891011121314151617181920212223 |
- //
- // TotalInsulinDisplayType.swift
- // FreeAPS
- //
- // Created by Cengiz Deniz on 25.08.24.
- //
- import Foundation
- enum TotalInsulinDisplayType: String, JSON, CaseIterable, Identifiable, Codable, Hashable {
- var id: String { rawValue }
- case totalDailyDose
- case totalInsulinInScope
- var displayName: String {
- switch self {
- case .totalDailyDose:
- return NSLocalizedString("TDD", comment: "")
- case .totalInsulinInScope:
- return NSLocalizedString("TINS", comment: "")
- }
- }
- }
|