<?php /** * Define a usernotification. * @author Valentin CARRUESCO * @category Plugin * @license copyright */ class UserNotification extends Entity{ public $id,$notification,$user,$read; protected $TABLE_NAME = 'user_notification'; public $fields = array( 'id' => 'key', 'notification' => 'int', 'user' => 'string', 'read' => 'boolean' ); } ?>