10 lines
215 B
C#
10 lines
215 B
C#
namespace ManagementPage.Auth
|
|
{
|
|
public class OidcOptions
|
|
{
|
|
public string ClientId { get; set; }
|
|
public string ClientSecret { get; set; }
|
|
public string Region { get; set; }
|
|
}
|
|
}
|