// // Employees.swift // EmployeeDirectory // // Created by Matt Bruce on 1/20/25. // import Foundation /// Wrapper JSON Class for the Employees public struct Employees: Codable { /// Array of Employees public var employees: [Employee] public let total: Int? public let page: Int? public let perPage: Int? private enum CodingKeys: String, CodingKey { case employees case total case page case perPage } }