<?php
namespace App\Models;
/**
* @property int $id
* @property int $ac_id
* @property string $name
* @property string $created_at
* @property string $updated_at
*/
class ActiveCampaignList extends AbstractQueue
{
protected $fillable = [
'ac_id',
'name',
];
}