<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class EmailTemplateAttachment extends Model
{
    protected $table = 'email_template_attachments';

    protected $fillable = ['id', 'email_template_id', 'title', 'file_name', 'file_type', 'file_size', 'file_extension', 'created_at', 'updated_at'];
}
