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