1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-25 11:52:29 +01:00
freescout/app/MailboxUser.php
2018-08-10 14:34:10 +00:00

17 lines
305 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class MailboxUser extends Model
{
// Action after sending a message
const AFTER_SEND_STAY = 1;
const AFTER_SEND_NEXT = 2;
const AFTER_SEND_FOLDER = 3;
protected $table = 'mailbox_user';
public $timestamps = false;
}