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