2025-01-10 15:59:51 -05:00
|
|
|
namespace CH.KeycloakApi;
|
|
|
|
|
|
|
|
public class KeycloakSettings
|
|
|
|
{
|
|
|
|
public string Endpoint { get; set; }
|
|
|
|
public string ClientId { get; set; }
|
|
|
|
public string ClientSecret { get; set; }
|
2025-01-13 19:19:03 -05:00
|
|
|
public string ApiRealm { get; set; }
|
|
|
|
public string Realm { get; set; }
|
2025-01-10 15:59:51 -05:00
|
|
|
}
|