RobotNet/RobotNet.OpenIddictClient/OpenIddictClientProviderOptions.cs
2025-10-15 15:15:53 +07:00

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