@namespace Shared.Pages @page "/agents" Agents
@code { private List agents = []; protected override void OnInitialized() { agents = CardDatabase.Cards .Where(c => c.Category is "Agent" or "Immortalized") .OrderBy(c => c.Cost) .ThenBy(c => c.Name) .ToList(); } }