mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 13:41:13 -07:00
11 lines
No EOL
238 B
C#
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);
|
|
}
|
|
} |