first commit -push

This commit is contained in:
dungtt
2025-10-15 15:15:53 +07:00
parent 674ae395be
commit a9577c5756
885 changed files with 74595 additions and 0 deletions

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

View File

@@ -0,0 +1,7 @@
namespace RobotNet.OpenIddictClient;
public class OpenIddictResourceOptions
{
public string Url { get; set; } = "";
public string[] Scopes { get; set; } = [];
}

View File

@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>