forked from leftypol/leftypol
10 lines
176 B
PHP
10 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;
|
|
}
|