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

17 lines
305 B
PHP
Raw Normal View History

2018-07-14 03:23:37 +02:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class MailboxUser extends Model
{
2018-08-10 16:34:10 +02:00
// Action after sending a message
const AFTER_SEND_STAY = 1;
const AFTER_SEND_NEXT = 2;
const AFTER_SEND_FOLDER = 3;
2018-08-10 16:28:35 +02:00
2018-08-10 16:34:10 +02:00
protected $table = 'mailbox_user';
public $timestamps = false;
2018-07-14 03:23:37 +02:00
}