proxitok/app/Models/BaseTemplate.php

14 lines
212 B
PHP
Raw Permalink Normal View History

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