<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class JobseekerNotification extends Model
{
    use HasFactory;
    protected $table = 'jobseeker_notifications';
    protected $fillable = [
        'company_id',
        'worker_id',
        'invitation_id',
        'type',
        'is_read',
        'description'
    ];
}
