mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 02:01:33 +00:00
22 lines
372 B
PHP
Executable File
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;
|
|
}
|
|
}
|