using System.Collections.Generic; using System.Threading.Tasks; using Ombi.Store.Models.Plex; namespace Ombi.Store { public interface IPlexDatabase { IEnumerable GetMetadata(); string DbLocation { get; set; } Task> GetMetadataAsync(); IEnumerable QueryMetadataItems(string query, object param); } }