mirror of
https://github.com/pablouser1/ProxiTok.git
synced 2024-12-06 19:27:30 +01:00
18 lines
436 B
PHP
18 lines
436 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
class RSSTemplate extends BaseTemplate {
|
|
public string $desc;
|
|
public string $image;
|
|
public string $link;
|
|
public array $items;
|
|
|
|
function __construct(string $title, string $desc, string $image, string $link, array $items) {
|
|
parent::__construct($title);
|
|
$this->desc = $desc;
|
|
$this->image = $image;
|
|
$this->link = $link;
|
|
$this->items = $items;
|
|
}
|
|
}
|