Post.php
323 Bytes
<?php
namespace FootyRoom\Queries\Post;
class Post
{
public $id;
public $title;
public $slug;
public $date;
public $sticky;
public $viewCount;
public $commentCount;
public $categoryName;
public $categoryUrl;
public $thumbnailUrl;
public $type;
public $userId;
}