18 lines
351 B
Swift

//
// ResponseStatus.swift
// APIService
//
// Created by Javier Cicchelli on 04/12/2022.
// Copyright © 2022 Röck+Cöde. All rights reserved.
//
enum ResponseStatus: Int {
case ok = 200
case created = 201
case noContent = 204
case badRequest = 400
case unauthorized = 401
case forbidden = 403
case notFound = 404
}