patbef-iOS/Befund/Core/Models/Response/PIN.swift

18 lines
293 B
Swift

//
// PIN.swift
// Befund
//
// Created by Artur Savitskiy on 04.08.22.
// Copyright © 2022 MVZ Dr. Stein und Kollegen. All rights reserved.
//
import Foundation
extension Core.Models.Response
{
struct PIN : Encodable, Decodable
{
public var code: String? = nil
}
}