Commit 05353643 authored by Ali's avatar Ali

add notification repositories

parent 0b1c4a22
package com.ali.notificationsvc.repositories;
import com.ali.notificationsvc.models.Notification;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface INotificationRepository extends JpaRepository<Notification, Integer> {
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment