mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-30 19:40:05 -07:00
14 lines
No EOL
345 B
C#
14 lines
No EOL
345 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Ombi.Api.Plex.Models;
|
|
using Ombi.Store.Entities;
|
|
|
|
namespace Ombi.Schedule.Jobs.Plex.Interfaces
|
|
{
|
|
public interface IPlexEpisodeSync : IBaseJob
|
|
{
|
|
Task Start();
|
|
Task ProcessEpsiodes(Metadata[] episodes, IQueryable<PlexEpisode> currentEpisodes);
|
|
}
|
|
} |