13 lines
372 B
C#
13 lines
372 B
C#
using System;
|
|
|
|
namespace Mirea.Api.Security.Common.Domain;
|
|
|
|
internal readonly struct OAuthProviderUrisData
|
|
{
|
|
public string RedirectUrl { get; init; }
|
|
public string TokenUrl { get; init; }
|
|
public string UserInfoUrl { get; init; }
|
|
public string AuthHeader { get; init; }
|
|
public string Scope { get; init; }
|
|
public Type UserInfoType { get; init; }
|
|
} |