Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IRegistration.cs
1using System;
2
4{
8 public interface IRegistration
9 {
13 string ClientId { get; }
14
18 string ClientSecret { get; }
19
23 DateTime? ClientSecretExpiresAt { get; }
24 }
25}
Dynamic client registration, as defined in RFC 7591.
Definition: IRegistration.cs:9
DateTime? ClientSecretExpiresAt
Time at which the client secret will expire
string ClientId
OAuth 2.0 client identifier string.
string ClientSecret
OAuth 2.0 client secret string.