mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2026-02-25 02:08:16 +01:00
12 lines
326 B
C#
12 lines
326 B
C#
namespace Phantom.Agent.Services.Downloads;
|
|
|
|
sealed class DownloadProgressEventArgs : EventArgs {
|
|
public ulong DownloadedBytes { get; }
|
|
public ulong? TotalBytes { get; }
|
|
|
|
internal DownloadProgressEventArgs(ulong downloadedBytes, ulong? totalBytes) {
|
|
DownloadedBytes = downloadedBytes;
|
|
TotalBytes = totalBytes;
|
|
}
|
|
}
|