forked from leftypol/leftypol
MediaInstallResult.php: add
This commit is contained in:
parent
0323449671
commit
3ad39e0cf3
1 changed files with 16 additions and 0 deletions
16
inc/Data/MediaInstallResult.php
Normal file
16
inc/Data/MediaInstallResult.php
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
<?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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue