mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 03:01:34 +00:00
20 lines
327 B
PHP
20 lines
327 B
PHP
<?php
|
|
namespace newznab;
|
|
|
|
class Content
|
|
{
|
|
public $id = '';
|
|
public $title = '';
|
|
public $url = '';
|
|
public $body = '';
|
|
public $metadescription = '';
|
|
public $metakeywords = '';
|
|
public $contenttype = '';
|
|
public $showinmenu = '';
|
|
public $status = '';
|
|
public $ordinal = '';
|
|
public $createddate = '';
|
|
public $role = '';
|
|
|
|
}
|