mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
Plex DB
This commit is contained in:
parent
705a4fe653
commit
67b124148c
16 changed files with 365 additions and 10 deletions
15
PlexRequests.Store/IPlexDatabase.cs
Normal file
15
PlexRequests.Store/IPlexDatabase.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Threading.Tasks;
|
||||
using PlexRequests.Store.Models.Plex;
|
||||
|
||||
namespace PlexRequests.Store
|
||||
{
|
||||
public interface IPlexDatabase
|
||||
{
|
||||
IEnumerable<MetadataItems> GetMetadata();
|
||||
string DbLocation { get; set; }
|
||||
Task<IEnumerable<MetadataItems>> GetMetadataAsync();
|
||||
IEnumerable<MetadataItems> QueryMetadataItems(string query, object param);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue