mirror of
https://github.com/AlexMacocian/MTSC.git
synced 2026-07-15 14:59:33 +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
13 lines
266 B
C#
13 lines
266 B
C#
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Linq;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MTSC.OAuth2.Models
|
|
{
|
|
internal sealed class SigningKeysResponse
|
|
{
|
|
[JsonProperty("keys")]
|
|
public List<JObject> SigningKeys { get; set; }
|
|
}
|
|
}
|