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;
7 public interface PlaylistSyncRepository extends JpaRepository<PlaylistSync, String> {
9 long countBySyncType(SyncType syncType);