19 lines
342 B
Swift
19 lines
342 B
Swift
//
|
|
// 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]
|
|
|
|
private enum CodingKeys: String, CodingKey {
|
|
case employees
|
|
}
|
|
}
|