Change DownloadCount to mean the total number of downloads including bot downloads

This commit is contained in:
Alex Cabal 2025-05-23 11:13:05 -05:00
parent 2122b0f625
commit d268681f3c
3 changed files with 8 additions and 7 deletions

View file

@ -5,7 +5,7 @@ use Safe\DateTimeImmutable;
class EbookDownloadSummary{
public int $EbookId;
public DateTimeImmutable $Date;
/** The number of downloads by non-bot clients on the given date. */
/** The total number of downloads, including bot downloads, on the given date. */
public int $DownloadCount = 0;
/** The number of downloads by bot clients on the given date. */
public int $BotDownloadCount = 0;