2025-11-29 18:24:27 -06:00
|
|
|
namespace LANCommander.Launcher.Services.Import;
|
2025-01-12 02:54:41 -06:00
|
|
|
|
|
|
|
|
public class ImportStatusUpdate
|
|
|
|
|
{
|
|
|
|
|
public int Index { get; set; }
|
|
|
|
|
public int Total { get; set; }
|
2025-12-05 21:04:01 -06:00
|
|
|
public string? Error { get; set; }
|
|
|
|
|
public IImportItemInfo? CurrentItem { get; set; }
|
2025-01-12 02:54:41 -06:00
|
|
|
}
|