<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class PricingRuleOption extends Model
{
    protected $table = 'pricing_rule_options';

    protected $fillable = ['id', 'pricing_rule_id', 'option_id', 'option_detail_id', 'created_at', 'updated_at'];
}
