forked from leftypol/leftypol
15 lines
276 B
PHP
15 lines
276 B
PHP
<?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;
|
|
}
|
|
}
|