namespace SWAD.API.Consts.Enums;
///
/// Service errors for controller
///
public enum ServiceResult
{
///
/// Returns on the successful executed state
///
Success,
///
/// Returns on the unsuccessful executed state
///
Failure,
///
/// Returns on the unsuccessful executed state not by code
///
NoResponse,
///
/// Returns on the unsuccessful executed state by user
///
BadRequest,
///
/// Returns on the unsuccessful executed state by service
///
NotFound,
///
/// Returns on the unsuccessful executed state by TMR
///
TooManyRequests
}