1
0
Fork 0
mirror of https://github.com/retailcrm/graphql-php.git synced 2025-03-31 03:16:10 +03:00
graphql-php/examples/01-blog/Blog/Data/Comment.php
2017-07-10 19:53:46 +07:00

25 lines
314 B
PHP

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