This commit is contained in:
Jamie.Rees 2016-10-17 17:31:38 +01:00
commit 67b124148c
16 changed files with 365 additions and 10 deletions

View file

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using PlexRequests.Store.Models.Plex;
namespace PlexRequests.Core
{
public interface IPlexReadOnlyDatabase
{
IEnumerable<MetadataItems> GetItemsAddedAfterDate(DateTime dateTime);
}
}