2025-03-17 22:22:43 +01:00
|
|
|
<?php
|
|
|
|
namespace Vichan\Data;
|
|
|
|
|
|
|
|
|
|
|
|
class ThumbGenerationResult {
|
|
|
|
public string $thumb_file_path;
|
2025-03-18 00:00:04 +01:00
|
|
|
public string $thumb_mime;
|
2025-03-17 22:22:43 +01:00
|
|
|
public bool $is_thumb_file_temporary;
|
|
|
|
public int $width;
|
|
|
|
public int $height;
|
|
|
|
}
|