lubelog/Models/OIDC/OpenIDProviderConfig.cs
DESKTOP-T0O5CDB\DESK-555BD fc87bd3b9c paginated cost table
2025-10-09 19:11:17 -06:00

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; }
}
}