ImageMetadataResult.php: add ImageMetadataResult

This commit is contained in:
Zankaria 2025-03-18 00:19:45 +01:00
parent 7cffa284d9
commit 7f6e84e593

View file

@ -0,0 +1,15 @@
<?php
namespace Vichan\Data;
class ImageMetadataResult {
public int $width;
public int $height;
public string $mime;
public function __construct(int $width, int $height, string $mime) {
$this->width = $$width;
$this->height = $$height;
$this->mime = $$mime;
}
}