mirror of
https://github.com/AlexMacocian/MTSC.git
synced 2026-07-16 23:39:32 +00:00
0fe9f9957c
* Setup OAuth2 support * Setup tests project * Setup OAuth2 unit tests in CI pipeline * Setup authorizeattribute tests * Test * Setup tests for AuthorizeAttribute * Setup OAuth2 support Unit Tests coverage * Add OAuth2 project to release
11 lines
239 B
C#
11 lines
239 B
C#
using Microsoft.IdentityModel.JsonWebTokens;
|
|
|
|
namespace MTSC.OAuth2.Models
|
|
{
|
|
public sealed class TokenValidationResponse
|
|
{
|
|
public bool IsValid { get; set; }
|
|
public JsonWebToken JsonWebToken { get; set; }
|
|
}
|
|
}
|