mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-25 05:42:45 +01:00
16 lines
487 B
C#
16 lines
487 B
C#
namespace DHT.Server.Data.Aggregations;
|
|
|
|
public sealed class DownloadStatusStatistics {
|
|
public int EnqueuedCount { get; internal set; }
|
|
public ulong EnqueuedSize { get; internal set; }
|
|
|
|
public int SuccessfulCount { get; internal set; }
|
|
public ulong SuccessfulSize { get; internal set; }
|
|
|
|
public int FailedCount { get; internal set; }
|
|
public ulong FailedSize { get; internal set; }
|
|
|
|
public int SkippedCount { get; internal set; }
|
|
public ulong SkippedSize { get; internal set; }
|
|
}
|