Files
newznab-tmux/nntmux/Sitemap.php
T
2016-09-21 12:34:07 +02:00

21 lines
306 B
PHP
Executable File

<?php
namespace nntmux;
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;
}
}