IdentityShroud/IdentityShroud.Core/Model/Client.cs
eelke ccb06b260c Implement jwks endpoint and add test for it.
This also let to some improvements/cleanups of the other tests and fixtures.
2026-02-15 19:06:09 +01:00

11 lines
No EOL
251 B
C#

using IdentityShroud.Core.Security;
namespace IdentityShroud.Core.Model;
public class Client
{
public Guid Id { get; set; }
public string Name { get; set; }
public string? SignatureAlgorithm { get; set; } = JsonWebAlgorithm.RS256;
}