2017-04-25 22:06:10 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BusinessLogic\Tickets;
|
|
|
|
|
|
|
|
|
2017-09-11 21:03:03 -04:00
|
|
|
class CreatedTicketModel extends \BaseClass {
|
2017-04-25 22:06:10 -04:00
|
|
|
/* @var $ticket Ticket */
|
|
|
|
public $ticket;
|
|
|
|
|
|
|
|
/* @var $emailVerified bool */
|
|
|
|
public $emailVerified;
|
|
|
|
|
|
|
|
function __construct($ticket, $emailVerified) {
|
|
|
|
$this->ticket = $ticket;
|
|
|
|
$this->emailVerified = $emailVerified;
|
|
|
|
}
|
|
|
|
}
|