namespace OTSSignsOrchestrator.Core.Models.DTOs;
///
/// Represents an Authentik certificate keypair for display in the Settings UI.
///
public class AuthentikKeypairItem
{
public string Pk { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
/// Display text for ComboBox.
public string DisplayText => $"{Name} ({Pk[..Math.Min(8, Pk.Length)]})";
public override string ToString() => DisplayText;
}