28 lines
494 B
PHP
28 lines
494 B
PHP
<?php
|
|
|
|
namespace App\Element\UseCases\GetElementPdf;
|
|
|
|
class GetElementPdfResult
|
|
{
|
|
public function __construct(
|
|
private string $contents,
|
|
private string $fileName,
|
|
private string $mimeType,
|
|
) {
|
|
}
|
|
|
|
public function getContents(): string
|
|
{
|
|
return $this->contents;
|
|
}
|
|
|
|
public function getFileName(): string
|
|
{
|
|
return $this->fileName;
|
|
}
|
|
|
|
public function getMimeType(): string
|
|
{
|
|
return $this->mimeType;
|
|
}
|
|
}
|