8 lines
194 B
C#
8 lines
194 B
C#
|
|
namespace LANCommander.Launcher.Models;
|
||
|
|
|
||
|
|
public class ImportStatusUpdate
|
||
|
|
{
|
||
|
|
public int Index { get; set; }
|
||
|
|
public int Total { get; set; }
|
||
|
|
public ImportItem CurrentItem { get; set; }
|
||
|
|
}
|