#nullable enable
namespace API.DTOs.Settings;
public sealed record OidcPublicConfigDto
{
///
public string? Authority { get; set; }
///
public string? ClientId { get; set; }
///
public bool AutoLogin { get; set; }
///
public bool DisablePasswordAuthentication { get; set; }
}