<?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;
}