forked from leftypol/leftypol
11 lines
176 B
PHP
11 lines
176 B
PHP
|
<?php
|
||
|
namespace Vichan\Data;
|
||
|
|
||
|
|
||
|
class ThumbGenerationResult {
|
||
|
public string $thumb_file_path;
|
||
|
public bool $is_thumb_file_temporary;
|
||
|
public int $width;
|
||
|
public int $height;
|
||
|
}
|