mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-15 01:32:55 -07:00
parent
bf043fc76e
commit
0e6462bbd5
31 changed files with 410 additions and 33 deletions
|
@ -1,4 +1,5 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Ombi.Store.Entities;
|
||||
|
||||
|
@ -13,5 +14,9 @@ namespace Ombi.Store.Repository
|
|||
Task<PlexContent> Get(string providerId);
|
||||
Task<PlexContent> GetByKey(string key);
|
||||
Task Update(PlexContent existingContent);
|
||||
IQueryable<PlexEpisode> GetAllEpisodes();
|
||||
Task<PlexEpisode> Add(PlexEpisode content);
|
||||
Task<PlexEpisode> GetEpisodeByKey(string key);
|
||||
Task AddRange(IEnumerable<PlexEpisode> content);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue