<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class ArticleKeywordDetail extends Model
{
    protected $table = 'article_keyword_details';

    protected $fillable = ['id', 'article_id', 'article_keyword_id', 'created_at', 'updated_at'];
}
