Class DailyStats
Represents a daily statistics snapshot of the TorBox platform.
public sealed record DailyStats : IEquatable<DailyStats>
- Inheritance
-
DailyStats
- Implements
- Inherited Members
Properties
CreatedAt
Gets the date and time when this snapshot was created, or null if not available.
[JsonPropertyName("created_at")]
public DateTimeOffset? CreatedAt { get; init; }
Property Value
TotalBytesDownloaded
Gets the total bytes downloaded across the platform.
[JsonPropertyName("total_bytes_downloaded")]
public long TotalBytesDownloaded { get; init; }
Property Value
TotalBytesEgressed
Gets the total bytes egressed across the platform.
[JsonPropertyName("total_bytes_egressed")]
public long TotalBytesEgressed { get; init; }
Property Value
TotalBytesUploaded
Gets the total bytes uploaded across the platform.
[JsonPropertyName("total_bytes_uploaded")]
public long TotalBytesUploaded { get; init; }
Property Value
TotalDownloads
Gets the total number of downloads on the platform for this snapshot.
[JsonPropertyName("total_downloads")]
public long TotalDownloads { get; init; }
Property Value
TotalServers
Gets the total number of servers available at the time of this snapshot.
[JsonPropertyName("total_servers")]
public int TotalServers { get; init; }
Property Value
TotalUsers
Gets the total number of registered users at the time of this snapshot.
[JsonPropertyName("total_users")]
public long TotalUsers { get; init; }