21 lines
397 B
C#
21 lines
397 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WatchIt.Shared.Models
|
|
{
|
|
public enum RequestResultStatus
|
|
{
|
|
Ok = 200,
|
|
Created = 201,
|
|
NoContent = 204,
|
|
BadRequest = 400,
|
|
Unauthorized = 401,
|
|
Forbidden = 403,
|
|
NotFound = 404,
|
|
Conflict = 409,
|
|
}
|
|
}
|