LANCommander/LANCommander.Launcher.Models/ImportStatusUpdate.cs

8 lines
194 B
C#
Raw Permalink Normal View History

2025-01-12 02:54:41 -06:00
namespace LANCommander.Launcher.Models;
public class ImportStatusUpdate
{
public int Index { get; set; }
public int Total { get; set; }
public ImportItem CurrentItem { get; set; }
}