proxitok/app/Models/RSSTemplate.php

16 lines
364 B
PHP
Raw Normal View History

<?php
namespace App\Models;
2022-11-04 19:08:19 +00:00
class RSSTemplate extends BaseTemplate {
public string $desc;
public string $link;
public array $items;
function __construct(string $title, string $desc, string $link, array $items) {
2022-11-04 19:08:19 +00:00
parent::__construct($title);
$this->desc = $desc;
$this->link = $link;
$this->items = $items;
}
}