<?php
namespace Diplix\KMGBundle\Entity;
/**
* Class SessionParameters
*
* Store information about the current session
*/
class SessionParameters
{
const SESSION_KEY = "SessionParameters";
/**
* @var string
*/
public $customTitle = "";
/**
* @var Customer|null
*/
public $selectedCustomer = null;
}