mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 17:28:55 +00:00
18 lines
287 B
PHP
18 lines
287 B
PHP
<?php
|
|
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;
|
|
}
|
|
} |