smartEnergyView-backend/app/Repositories/Notifications/NotificationContractInterface.php

11 lines
194 B
PHP

<?php
namespace App\Repositories\Notifications;
use App\Repositories\ContractInterface;
interface NotificationContractInterface extends ContractInterface
{
public function getNotify();
}