9 lines
No EOL
233 B
C#
9 lines
No EOL
233 B
C#
namespace LANCommander.Launcher.Models;
|
|
|
|
public class ImportProgress
|
|
{
|
|
public int Index { get; set; }
|
|
public int Total { get; set; }
|
|
public ImportItem CurrentItem { get; set; }
|
|
public bool IsImporting { get; set; }
|
|
} |