21 lines
432 B
PHP
21 lines
432 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Created by PhpStorm.
|
||
|
* User: user
|
||
|
* Date: 1/19/17
|
||
|
* Time: 8:49 PM
|
||
|
*/
|
||
|
|
||
|
namespace BusinessLogic\Security;
|
||
|
|
||
|
|
||
|
class UserContextPreferences {
|
||
|
public $afterReply;
|
||
|
public $autoStartTimeWorked;
|
||
|
public $autoreload;
|
||
|
public $defaultNotifyCustomerNewTicket;
|
||
|
public $defaultNotifyCustomerReply;
|
||
|
public $showSuggestedKnowledgebaseArticles;
|
||
|
public $defaultCalendarView;
|
||
|
public $defaultTicketView;
|
||
|
}
|