<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Action extends Model
{
    //
    protected $fillable = [
        'user_id',
        'finished_at',
        'type',
        'file',
        'exception',
    ];

    protected $dates = [
        'created_at',
        'updated_at',
        'finished_at'
    ];
}
