mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-25 05:42:45 +01:00
12 lines
393 B
C#
12 lines
393 B
C#
namespace DHT.Server.Database;
|
|
|
|
/// <summary>
|
|
/// A complete snapshot of database statistics at a particular point in time.
|
|
/// </summary>
|
|
public readonly struct DatabaseStatisticsSnapshot {
|
|
public long TotalServers { get; internal init; }
|
|
public long TotalChannels { get; internal init; }
|
|
public long TotalUsers { get; internal init; }
|
|
public long TotalMessages { get; internal init; }
|
|
}
|