proxitok/app/Models/BaseTemplate.php
2022-11-04 20:08:19 +01:00

14 lines
212 B
PHP

<?php
namespace App\Models;
/**
* Base for all templates, needs a Title to set
*/
class BaseTemplate {
public string $title;
function __construct(string $title) {
$this->title = $title;
}
}