9 lines
214 B
C#
9 lines
214 B
C#
|
|
using System.Text.Json.Serialization;
|
||
|
|
|
||
|
|
namespace IdentityShroud.Core.Messages;
|
||
|
|
|
||
|
|
public class JsonWebKeySet
|
||
|
|
{
|
||
|
|
[JsonPropertyName("keys")]
|
||
|
|
public List<JsonWebKey> Keys { get; set; } = new List<JsonWebKey>();
|
||
|
|
}
|