package org.egl_cepgl.pm.repository;

import org.egl_cepgl.pm.model.AppFileNotification;
import org.springframework.data.jpa.repository.JpaRepository;

public interface AppFileNotificationRepository extends JpaRepository<AppFileNotification, Long> {

    Boolean existsByApplicantAndFile(Long applicant_id, Long file_id);
}
