<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class PricingRuleDetailItem extends Model
{
    protected $table = 'pricing_rule_detail_items';

    protected $fillable = ['id', 'pricing_rule_detail_id', 'product_option_id', 'created_at', 'updated_at'];
}

