22 lines
502 B
PHP
22 lines
502 B
PHP
|
<?php
|
||
|
|
||
|
final class Image
|
||
|
{
|
||
|
public string $full;
|
||
|
public string $thumbnail;
|
||
|
public string $title;
|
||
|
public string $alt;
|
||
|
public int $width;
|
||
|
public int $height;
|
||
|
|
||
|
public function __construct(string $full, string $thumbnail, string $title, string $alt, int $width, int $height)
|
||
|
{
|
||
|
$this->full = $full;
|
||
|
$this->thumbnail = $thumbnail;
|
||
|
$this->title = $title;
|
||
|
$this->alt = $alt;
|
||
|
$this->width = $width;
|
||
|
$this->height = $height;
|
||
|
}
|
||
|
}
|