Skip to content

Instantly share code, notes, and snippets.

@mlimaloureiro
Created September 12, 2014 09:39
Show Gist options
  • Save mlimaloureiro/1cf6dd8b650776bfc52c to your computer and use it in GitHub Desktop.
Save mlimaloureiro/1cf6dd8b650776bfc52c to your computer and use it in GitHub Desktop.
<?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