// // Session.swift // Befund // // Created by Irakli Abetschkhrischwili on 23.05.22. // Copyright © 2022 MVZ Dr. Stein und Kollegen. All rights reserved. import Foundation extension Core.Models { public struct Session { public var NotificationGranted: Bool = false public var CameraGranted: Bool = false public var Device: Core.Models.System.Device? = nil public var DevicePassword: String! = nil // public var PushExplained: Bool = false // public var PushAccepted: Bool = false public var Maintenance: Bool = false public var MaintenanceNotified: Bool = true } }