<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Device extends Model
{

    public $timestamps = false;
    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = ['device_id', 'os_type', 'organization_id', 'employee_id', 'status', 'created', 'updated'];
}
