first commit -push
This commit is contained in:
12
RobotNet.OpenIddictClient/OpenIddictClientProviderOptions.cs
Normal file
12
RobotNet.OpenIddictClient/OpenIddictClientProviderOptions.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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; }
|
||||
}
|
||||
7
RobotNet.OpenIddictClient/OpenIddictResourceOptions.cs
Normal file
7
RobotNet.OpenIddictClient/OpenIddictResourceOptions.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace RobotNet.OpenIddictClient;
|
||||
|
||||
public class OpenIddictResourceOptions
|
||||
{
|
||||
public string Url { get; set; } = "";
|
||||
public string[] Scopes { get; set; } = [];
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
Reference in New Issue
Block a user