Files
2022-08-31 14:21:25 +03:00

19 lines
328 B
Swift

//
// Device.swift
//
//
// Created by Juraldinio on 01.08.2022.
//
import Foundation
/// Model represent device
public struct Device {
/// Device generated Identity UUID
public let uuid: String
/// Server generated Identity
public let id: String
/// Is device trusted
public let isTrusted: Bool
}