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 the profile data value
12 *
13 * @package BaseModels
14 */
15 class ProfileQuestionValue extends Model{
16 /**
17 * The associated table
18 *
19 * @var string
20 */
21 protected static $tablename = "ProfileQuestionValue";
22
23 }
24