1 <?php
2 /**
3 * ProfileQuestionValue.php
4 *
5 * @author Elvyrra SAS
6 * @license http://rem.mit-license.org/ MIT
7 */
8 namespace Hawk;
9
10 /**
11 * This model describes a the value of the permissions for a role
12 *
13 * @package BaseModels
14 */
15 class RolePermission extends Model{
16 /**
17 * The associated table
18 *
19 * @var string
20 */
21 protected static $tablename = "RolePermission";
22
23 }
24