2016-10-23 17:09:43 -07:00
|
|
|
|
using System;
|
2014-08-10 15:13:17 -07:00
|
|
|
|
using MediaBrowser.Model.Events;
|
|
|
|
|
using MediaBrowser.Model.Querying;
|
|
|
|
|
|
2016-10-23 17:09:43 -07:00
|
|
|
|
namespace MediaBrowser.Model.Activity
|
2014-08-10 15:13:17 -07:00
|
|
|
|
{
|
|
|
|
|
public interface IActivityManager
|
|
|
|
|
{
|
|
|
|
|
event EventHandler<GenericEventArgs<ActivityLogEntry>> EntryCreated;
|
|
|
|
|
|
2017-08-26 17:32:33 -07:00
|
|
|
|
void Create(ActivityLogEntry entry);
|
2014-08-10 15:13:17 -07:00
|
|
|
|
|
2014-08-14 06:24:30 -07:00
|
|
|
|
QueryResult<ActivityLogEntry> GetActivityLogEntries(DateTime? minDate, int? startIndex, int? limit);
|
2014-08-10 15:13:17 -07:00
|
|
|
|
}
|
|
|
|
|
}
|