Anapher/Strive

View on GitHub
src/Services/ConferenceManagement/Strive.Core/Errors/ErrorType.cs

Summary

Maintainability
A
0 mins
Test Coverage
namespace Strive.Core.Errors
{
    public enum ErrorType
    {
        BadRequest,
        Conflict,
        InternalServerError,
        Forbidden,
        NotFound,
    }
}