1
0
mirror of synced 2025-01-31 04:21:44 +03:00
Fabio B. Silva ee7b5da64a start work
2012-09-29 16:18:56 -03:00

17 lines
299 B
PHP

<?php
namespace Doctrine\Tests\Models\CMS;
class CmsUserDTO
{
public $name;
public $email;
public $city;
public function __construct($name = null, $email = null, $city = null)
{
$this->name = $name;
$this->email = $email;
$this->city = $city;
}
}