Files
newznab-tmux/nntmux/Sitemap.php
T
DariusIII 24fa162413 Apply fixes from StyleCI
[ci skip] [skip ci]
2017-08-31 09:31:28 +00:00

22 lines
368 B
PHP
Executable File

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