bf8cce15f82e728b11db7166b76cd780aac4432f
[mediacube.git] /
1 package hu.user.mcvodsync.db.repository;
2
3 import hu.user.mcvodsync.db.PlaylistSync;
4 import hu.user.mcvodsync.db.SyncType;
5 import org.springframework.data.jpa.repository.JpaRepository;
6
7 import java.util.List;
8
9 public interface PlaylistSyncRepository extends JpaRepository<PlaylistSync, Long> {
10
11     long countBySyncType(SyncType syncType);
12
13     List<PlaylistSync> findAllByName(String name);
14 }