18 lines
286 B
Swift
18 lines
286 B
Swift
|
//
|
||
|
// Me.swift
|
||
|
// APIService
|
||
|
//
|
||
|
// Created by Javier Cicchelli on 03/12/2022.
|
||
|
// Copyright © 2022 Röck+Cöde. All rights reserved.
|
||
|
//
|
||
|
|
||
|
public struct Me {
|
||
|
let firstName: String
|
||
|
let lastName: String
|
||
|
let rootItem: Item
|
||
|
}
|
||
|
|
||
|
// MARK: - Decodable
|
||
|
|
||
|
extension Me: Decodable {}
|