mirror of
https://github.com/pablouser1/ProxiTok.git
synced 2024-12-06 19:27:30 +01:00
15 lines
240 B
PHP
15 lines
240 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
/**
|
|
* Base for all templates, needs a Title to set
|
|
*/
|
|
class BaseTemplate {
|
|
public string $title;
|
|
public string $version;
|
|
|
|
function __construct(string $title) {
|
|
$this->title = $title;
|
|
}
|
|
}
|