<?php
namespace App\Enums;

interface PosPaymentMethod
{
    const CASH = 1;
    const CARD = 2;
    const MOBILE_BANKING = 3;
    const OTHER = 4;
}
