13 lines
319 B
C#
13 lines
319 B
C#
namespace RobotNet.OpenIddictClient;
|
|
|
|
#nullable disable
|
|
|
|
public class OpenIddictClientProviderOptions
|
|
{
|
|
public string Issuer { get; set; }
|
|
public string[] Audiences { get; set; }
|
|
public string[] Scopes { get; set; }
|
|
public string ClientId { get; set; }
|
|
public string ClientSecret { get; set; }
|
|
}
|