10 lines
265 B
C#
10 lines
265 B
C#
|
namespace CH.KeycloakApi;
|
||
|
|
||
|
public class KeycloakSettings
|
||
|
{
|
||
|
public string Endpoint { get; set; }
|
||
|
public string ClientId { get; set; }
|
||
|
public string ClientSecret { get; set; }
|
||
|
public string EmployeeRealm { get; set; }
|
||
|
public string UserRealm { get; set; }
|
||
|
}
|