Files

23 lines
472 B
C#
Raw Normal View History

2024-04-27 22:36:16 +02:00
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.ModelBinding;
namespace WatchIt.WebAPI.Services.Controllers.Common;
public class RequestUnauthorizedResult : RequestResult
{
#region CONSTRUCTORS
public RequestUnauthorizedResult() : base(RequestResultStatus.Unauthorized)
{
}
#endregion
#region CONVERTION
protected override ActionResult ConvertToActionResult() => new UnauthorizedResult();
#endregion
}