mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 03:01:34 +00:00
21 lines
307 B
PHP
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;
|
|
}
|
|
}
|