mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-23 13:26:04 +03:00
25 lines
318 B
PHP
25 lines
318 B
PHP
<?php
|
|
namespace GraphQL\Examples\Blog\Data;
|
|
|
|
use GraphQL\Utils;
|
|
|
|
class Story
|
|
{
|
|
public $id;
|
|
|
|
public $authorId;
|
|
|
|
public $title;
|
|
|
|
public $body;
|
|
|
|
public $isAnonymous = false;
|
|
|
|
public $isLiked = false;
|
|
|
|
public function __construct(array $data)
|
|
{
|
|
Utils::assign($this, $data);
|
|
}
|
|
}
|