@using LANCommander.Launcher.Models @inject ImportService ImportService
@if (Total > 0) { Importing: @(CurrentItem?.Name ?? "") } else { Starting import... }
@code { [Parameter] public int Index { get; set; } [Parameter] public int Total { get; set; } [Parameter] public ImportItem CurrentItem { get; set; } }