18 lines
307 B
PHP
18 lines
307 B
PHP
<?php
|
|
|
|
namespace Leantime\Domain\Api\Models;
|
|
|
|
use Leantime\Domain\Api\Contracts\StaticAssetType;
|
|
|
|
/**
|
|
* Represents a static asset file.
|
|
*/
|
|
class StaticAsset
|
|
{
|
|
public function __construct(
|
|
public string $key,
|
|
public string $absPath,
|
|
public StaticAssetType $fileType,
|
|
) {}
|
|
}
|