13 lines
370 B
C#
13 lines
370 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Mirea.Api.Security.Common.Domain.OAuth2;
|
|||
|
|
|||
|
internal 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; }
|
|||
|
}
|