<?php

namespace App\Models\Supplier;

use App\Models\Product\Host as ProductHost;

final class Host extends Type
{
	protected const category_name = 'Hosting';

	protected $table = 'supplier_host';

	// The model of the product that is supplied by this model
	const ProductModel = ProductHost::class;
}