Ombi/Old/Ombi.Core/IPlexReadOnlyDatabase.cs
2017-05-16 08:31:44 +01:00

11 lines
No EOL
238 B
C#

using System;
using System.Collections.Generic;
using Ombi.Store.Models.Plex;
namespace Ombi.Core
{
public interface IPlexReadOnlyDatabase
{
IEnumerable<MetadataItems> GetItemsAddedAfterDate(DateTime dateTime);
}
}