forked from leftypol/leftypol
16 lines
299 B
PHP
16 lines
299 B
PHP
<?php
|
|
namespace Vichan\Data;
|
|
|
|
|
|
class MediaInstallResult {
|
|
public ThumbGenerationResult $thumb;
|
|
public string $media_file_path;
|
|
|
|
public function __construct(
|
|
ThumbGenerationResult $thumb,
|
|
string $media_file_path,
|
|
) {
|
|
$this->thumb = $thumb;
|
|
$this->media_file_path = $media_file_path;
|
|
}
|
|
}
|