8 lines
240 B
C#
8 lines
240 B
C#
namespace FictionArchive.Service.UserService.Services.AuthenticationClient.Authentik;
|
|
|
|
public class AuthentikConfiguration
|
|
{
|
|
public string BaseUrl { get; set; } = string.Empty;
|
|
public string ApiToken { get; set; } = string.Empty;
|
|
}
|