<?php
declare(strict_types=1);
namespace App\Models;
/**
* Class Counter
*
* @property int id
* @property string period
* @property int allhosts
* @property int allhits
* @property int dayhosts
* @property int dayhits
* @property int hosts24
* @property int hits24
*/
class Counter extends BaseModel
{
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
/**
* The attributes that aren't mass assignable.
*
* @var array
*/
protected $guarded = [];
}