9 lines
No EOL
250 B
C#
9 lines
No EOL
250 B
C#
namespace LANCommander.Server.ImportExport.Models;
|
|
|
|
public class ImportStatusUpdate
|
|
{
|
|
public int Index { get; set; }
|
|
public int Total { get; set; }
|
|
public string? Error { get; set; }
|
|
public IImportItemInfo? CurrentItem { get; set; }
|
|
} |