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/User.php
2017-07-10 19:53:46 +07:00

22 lines
287 B
PHP

<?php
namespace GraphQL\Examples\Blog\Data;
use GraphQL\Utils\Utils;
class User
{
public $id;
public $email;
public $firstName;
public $lastName;
public $hasPhoto;
public function __construct(array $data)
{
Utils::assign($this, $data);
}
}