<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* @property ?int $option_id
* @property ?int $flat_id
*/
class FlatOptionsRelation extends Model
{
protected $primaryKey = null;
public $timestamps = false;
protected $fillable = [
'option_id',
'flat_id',
];
}