18 lines
286 B
Swift
Raw Normal View History

2022-12-03 23:20:49 +01:00
//
// 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 {}