Added HttpException class for missing HttpException for net8 Wrapped HttpContext.Session, GetJsonResult, IsAjaxRequest and GetUserIdentityName in controllers for net8 Added AuthenticationService to test Fab2ApprovalMKLink code for net8 Compile conditionally flags to debug in dotnet core
9 lines
199 B
C#
9 lines
199 B
C#
namespace Fab2ApprovalSystem.Models;
|
|
|
|
public class LoginResult {
|
|
|
|
public bool IsAuthenticated { get; set; }
|
|
public User User { get; set; }
|
|
public AuthTokens AuthTokens { get; set; }
|
|
|
|
} |