patbef-iOS/Befund/Core/Models/System/Device.swift

25 lines
557 B
Swift
Raw Permalink Normal View History

2024-01-29 16:20:42 +01:00
//
// Device.swift
// Befund
//
// Created by Irakli Abetschkhrischwili on 21.05.22.
// Copyright © 2022 MVZ Dr. Stein und Kollegen. All rights reserved.
import Foundation
extension Core.Models
{
public struct System
{
public struct Device
{
public var udid: String? = nil
public var name: String? = nil
public var model: String? = nil
public var manufacturer: String? = nil
public var os: String? = nil
public var token: String? = nil
}
}
}