14 lines
225 B
PHP
14 lines
225 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Page
|
|
{
|
|
public function __construct(
|
|
protected string $title,
|
|
protected string $path,
|
|
protected string $outputPath,
|
|
protected string $content,
|
|
) {}
|
|
}
|