<?php
declare(strict_types=1);
namespace AppModels;
use CarbonCarbonImmutable;
use IlluminateDatabaseEloquentModel;
/**
* Class StickersCategory
*
* @property int $id
* @property string $name
* @property CarbonImmutable $updated_at
* @property CarbonImmutable $created_at
*/
class StickersCategory extends Model
{
/**
* The attributes that aren't mass assignable.
*/
protected $guarded = [];
}