LANCommander/LANCommander.Launcher.Models/ImportProgress.cs

9 lines
233 B
C#
Raw Permalink Normal View History

2025-02-06 20:54:03 -06:00
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; }
}