// // PublicKey.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 Response { public class PublicKey : Encodable, Decodable { public var key: String? = nil } } }