Notification Code.

This commit is contained in:
piyushkag
2024-12-13 20:57:58 +05:30
parent 2a5f344ea0
commit d8e51f3a70
25 changed files with 520 additions and 6 deletions

View File

@@ -0,0 +1,7 @@
package net.gepafin.tendermanagement.service;
import net.gepafin.tendermanagement.model.request.NotificationReq;
public interface NotificationService {
NotificationReq sendNotification(Long userId, NotificationReq notificationReq);
}