mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-31 18:28:54 +00:00
b3c50fdd5d
(cherry picked from commit 8734ea0)
19 lines
308 B
PHP
19 lines
308 B
PHP
<?php
|
|
|
|
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 = '';
|
|
|
|
}
|