2024-01-20 21:02:41 -06:00
|
|
|
|
using LANCommander.SDK.Models;
|
|
|
|
|
|
using SharpCompress.Common;
|
2023-11-10 00:29:16 -06:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
|
|
namespace LANCommander.SDK
|
|
|
|
|
|
{
|
|
|
|
|
|
public class ArchiveExtractionProgressArgs : EventArgs
|
|
|
|
|
|
{
|
|
|
|
|
|
public long Position { get; set; }
|
|
|
|
|
|
public long Length { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class ArchiveEntryExtractionProgressArgs : EventArgs
|
|
|
|
|
|
{
|
2026-03-09 22:12:01 -05:00
|
|
|
|
public ProgressReport Progress { get; set; }
|
2023-11-10 00:29:16 -06:00
|
|
|
|
public IEntry Entry { get; set; }
|
2024-01-20 21:02:41 -06:00
|
|
|
|
public Game Game { get; set; }
|
2023-11-10 00:29:16 -06:00
|
|
|
|
}
|
|
|
|
|
|
}
|