<?php
declare(strict_types=1);

namespace FreshCloud\Mail\ImapCommands;

final readonly class QuotaInfo
{
    public function __construct(
        public int $usedBytes,
        public int $totalBytes,
        public float $usagePercent,
    ) {
        if ($totalBytes <= 0) {
            throw new \InvalidArgumentException("Total bytes must be positive");
        }
    }
}