32 lines
435 B
PHP
32 lines
435 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Created by PhpStorm.
|
||
|
* User: mkoch
|
||
|
* Date: 1/27/2017
|
||
|
* Time: 9:25 PM
|
||
|
*/
|
||
|
|
||
|
namespace BusinessLogic\Security;
|
||
|
|
||
|
|
||
|
class BannedEmail {
|
||
|
/**
|
||
|
* @var int
|
||
|
*/
|
||
|
public $id;
|
||
|
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
public $email;
|
||
|
|
||
|
/**
|
||
|
* @var int|null The user who banned the email, or null if the user was deleted
|
||
|
*/
|
||
|
public $bannedById;
|
||
|
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
public $dateBanned;
|
||
|
}
|