Created
September 12, 2014 09:39
-
-
Save mlimaloureiro/1cf6dd8b650776bfc52c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Uniplaces\AccommodationBundle\Application\ProspectiveProperty\TransferObject; | |
use Uniplaces\AgencyBundle\Domain\Staff\Id\AgencyStaffId; | |
use Uniplaces\AccommodationBundle\Application\ProspectiveProperty\TransferObject\ProspectivePropertyPhotoStatusTransferObject; | |
use Uniplaces\AccommodationBundle\Application\ProspectiveProperty\TransferObject\ProspectivePropertyAddressTransferObject; | |
/** | |
* ProspectivePropertyTransferObject | |
*/ | |
class ProspectivePropertyTransferObject | |
{ | |
/** | |
* @var string | |
*/ | |
public $id; | |
/** | |
* @var string | |
*/ | |
public $accommodationProviderId; | |
/** | |
* @var ProspectivePropertyAddressTransferObject | |
*/ | |
public $address; | |
/** | |
* @var ProspectivePropertyPhotoStatusTransferObject | |
*/ | |
public $photosStatus; | |
/** | |
* @var ProspectivePropertyPreQcStatusTransferObject | |
*/ | |
public $preQcStatus; | |
/** | |
* @var ProspectivePropertyMainStatusTransferObject | |
*/ | |
public $mainStatus; | |
/** | |
* @var AgencyStaffId | |
*/ | |
public $created; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment