18 lines
430 B
C#
18 lines
430 B
C#
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using OnlineAssessment.Common;
|
|
using System.Threading.Tasks;
|
|
using System.Web.Mvc;
|
|
|
|
namespace Common
|
|
{
|
|
public class CustomUnauthorizedResult : IActionResult
|
|
{
|
|
//public CustomUnauthorizedResult(string message) : base(new CustomError(message))
|
|
//{
|
|
// StatusCode = StatusCodes.Status401Unauthorized;
|
|
//}
|
|
|
|
}
|
|
}
|