2014-08-10 18:13:17 -04:00
|
|
|
|
using MediaBrowser.Model.Activity;
|
|
|
|
|
|
using MediaBrowser.Model.Querying;
|
2014-08-14 09:24:30 -04:00
|
|
|
|
using System;
|
2014-08-10 18:13:17 -04:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Activity
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IActivityRepository
|
|
|
|
|
|
{
|
|
|
|
|
|
Task Create(ActivityLogEntry entry);
|
|
|
|
|
|
|
2014-08-14 09:24:30 -04:00
|
|
|
|
QueryResult<ActivityLogEntry> GetActivityLogEntries(DateTime? minDate, int? startIndex, int? limit);
|
2014-08-10 18:13:17 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|