File: /var/www/quadcode/app/Models/BitrixAcSyncSetting.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* @property int $id
* @property string $entity_id
* @property string $bitrix_status
* @property int $active_campaign_list_id
* @property bool $with_unsubscribe
* @property string $last_sync_at
* @property int $last_updated_count
* @property string $created_at
* @property string $updated_at
*/
class BitrixAcSyncSetting extends Model
{
protected $fillable = [
'id',
'entity_id',
'bitrix_status',
'active_campaign_list_id',
'with_unsubscribe',
'last_sync_at',
'last_updated_count',
];
}