patbef-iOS/Befund/Core/Models/Request/KeyExchange.swift

20 lines
378 B
Swift
Raw Permalink Normal View History

2024-01-29 16:20:42 +01:00
//
// KeyExchange.swift
// Befund
//
// Created by Irakli Abetschkhrischwili on 15.05.22.
// Copyright © 2022 MVZ Dr. Stein und Kollegen. All rights reserved.
import Foundation
extension Core.Models
{
public struct Request
{
public class KeyExchange : Encodable, Decodable
{
public var key_type: String = "PublicKey"
}
}
}