mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 07:46:05 -07:00
14 lines
No EOL
403 B
C#
14 lines
No EOL
403 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Ombi.Store.Models.Plex;
|
|
|
|
namespace Ombi.Store
|
|
{
|
|
public interface IPlexDatabase
|
|
{
|
|
IEnumerable<MetadataItems> GetMetadata();
|
|
string DbLocation { get; set; }
|
|
Task<IEnumerable<MetadataItems>> GetMetadataAsync();
|
|
IEnumerable<MetadataItems> QueryMetadataItems(string query, object param);
|
|
}
|
|
} |