Files
newznab-tmux-NNTmux/newznab/Sitemap.php
T

21 lines
307 B
PHP

<?php
namespace newznab;
class Sitemap
{
public $type = '';
public $name = '';
public $loc = '';
public $priority = '';
public $changefreq = '';
function Sitemap($t, $n, $l, $p, $c)
{
$this->type = $t;
$this->name = $n;
$this->loc = $l;
$this->priority = $p;
$this->changefreq = $c;
}
}