// // Employees.swift // EmployeeDirectory // // Created by Matt Bruce on 3/3/25. // import Foundation /// Wrapper JSON Class for the Employees public struct Employees: Codable { /// Array of Employees public var result: [Employee] public var hasNextPage: Bool = false }