// // 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 {}