zap/app/Models/Page.php
2025-08-19 18:59:43 -04:00

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,
) {}
}