leftypol/inc/Data/ImageMetadataResult.php

16 lines
275 B
PHP
Raw Normal View History

<?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;
2025-03-20 23:27:48 +01:00
$this->mime = $mime;
}
}