2024-11-04 02:39:10 +03:00
|
|
|
|
using System;
|
|
|
|
|
|
2024-12-26 13:38:43 +03:00
|
|
|
|
namespace Mirea.Api.Security.Common.Domain;
|
2024-11-04 02:39:10 +03:00
|
|
|
|
|
2024-12-25 05:43:30 +03:00
|
|
|
|
internal readonly struct OAuthProviderUrisData
|
2024-11-04 02:39:10 +03:00
|
|
|
|
{
|
|
|
|
|
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; }
|
|
|
|
|
}
|