17 lines
322 B
PHP
17 lines
322 B
PHP
|
<?php
|
||
|
|
||
|
namespace BusinessLogic\Tickets;
|
||
|
|
||
|
|
||
|
class CreatedTicketModel {
|
||
|
/* @var $ticket Ticket */
|
||
|
public $ticket;
|
||
|
|
||
|
/* @var $emailVerified bool */
|
||
|
public $emailVerified;
|
||
|
|
||
|
function __construct($ticket, $emailVerified) {
|
||
|
$this->ticket = $ticket;
|
||
|
$this->emailVerified = $emailVerified;
|
||
|
}
|
||
|
}
|