2019-01-13 20:02:23 +00:00
|
|
|
using System;
|
2018-12-27 23:27:57 +00:00
|
|
|
using MediaBrowser.Model.Events;
|
2019-01-25 20:33:58 +00:00
|
|
|
using MediaBrowser.Model.Querying;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Activity
|
|
|
|
{
|
|
|
|
public interface IActivityManager
|
|
|
|
{
|
|
|
|
event EventHandler<GenericEventArgs<ActivityLogEntry>> EntryCreated;
|
|
|
|
|
2019-01-25 20:33:58 +00:00
|
|
|
void Create(ActivityLogEntry entry);
|
2018-12-27 23:27:57 +00:00
|
|
|
|
2019-01-25 20:33:58 +00:00
|
|
|
QueryResult<ActivityLogEntry> GetActivityLogEntries(DateTime? minDate, int? startIndex, int? limit);
|
|
|
|
|
|
|
|
QueryResult<ActivityLogEntry> GetActivityLogEntries(DateTime? minDate, bool? hasUserId, int? x, int? y);
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|