mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
20 lines
326 B
PHP
Executable File
20 lines
326 B
PHP
Executable File
<?php
|
|
namespace nntmux;
|
|
|
|
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 = '';
|
|
|
|
}
|