practicekea_backend/microservices/_layers/common/CustomUnauthorizedResult.cs

18 lines
430 B
C#
Raw Permalink Normal View History

2024-12-02 13:24:34 +00:00
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;
//}
}
}