1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2026-02-25 11:08:17 +01:00
Files
Minecraft-Phantom-Panel/Agent/Phantom.Agent.Services/Downloads/DownloadProgressEventArgs.cs

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;
}
}