Files
newznab-tmux/nntmux/Sitemap.php
T
2017-12-22 13:05:13 +01:00

22 lines
372 B
PHP
Executable File

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