19 lines
328 B
Swift
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
|
|
}
|