16 lines
298 B
Swift
16 lines
298 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 notFound = 404
|
|
}
|