1 package hu.user.mcvodsync.db.repository;
3 import hu.user.mcvodsync.db.PlaylistSync;
4 import hu.user.mcvodsync.db.SyncType;
5 import org.springframework.data.jpa.repository.JpaRepository;
9 public interface PlaylistSyncRepository extends JpaRepository<PlaylistSync, Long> {
11 long countBySyncType(SyncType syncType);
13 List<PlaylistSync> findAllByName(String name);