Files
newznab-tmux/Blacklight/Sitemap.php
T
2018-02-14 23:08:17 +01:00

22 lines
376 B
PHP
Executable File

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