namespace OTSSignsOrchestrator.Core.Models.DTOs;
///
/// Represents an Authentik flow for display in the Settings UI.
///
public class AuthentikFlowItem
{
public string Pk { get; set; } = string.Empty;
public string Slug { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public string Designation { get; set; } = string.Empty;
/// Display text for ComboBox: "slug — Name".
public string DisplayText => $"{Slug} — {Name}";
public override string ToString() => DisplayText;
}