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; }