mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-11 04:37:03 -06:00
15 lines
440 B
C#
15 lines
440 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
/// <summary>
|
|
/// Imported data from .well-known endpoint
|
|
/// </summary>
|
|
public class OpenIDProviderConfig
|
|
{
|
|
public string authorization_endpoint { get; set; }
|
|
public string token_endpoint { get; set; }
|
|
public string userinfo_endpoint { get; set; }
|
|
public string jwks_uri { get; set; }
|
|
public string end_session_endpoint { get; set; }
|
|
}
|
|
}
|