<?php

namespace App\Enums;

interface ShippingMethod
{
    const PRODUCT_WISE = 5;
    const FLAT_WISE    = 10;
    const AREA_WISE    = 15;
}
