1
0
mirror of https://github.com/retailcrm/graphql-php.git synced 2025-03-20 15:03:51 +03:00

23 lines
294 B
PHP
Raw Normal View History

<?php
namespace GraphQL\Examples\Blog\Data;
use GraphQL\Utils\Utils;
class Story
{
public $id;
public $authorId;
public $title;
public $body;
public $isAnonymous = false;
public function __construct(array $data)
{
Utils::assign($this, $data);
}
}