1
0
mirror of https://github.com/retailcrm/graphql-php.git synced 2025-03-13 08:16:06 +03:00
2016-10-23 05:13:55 +07:00

26 lines
308 B
PHP

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