EmployeeDirectory-SwiftUI/EmployeeDirectory/Protocols/EmployeeServiceProtocol.swift
2025-03-04 14:54:57 -06:00

11 lines
203 B
Swift

//
// EmployeeServiceProtocol.swift
// EmployeeDirectory
//
// Created by Matt Bruce on 3/3/25.
//
public protocol EmployeeServiceProtocol {
func getUsers(page: Int?) async throws -> Employees
}