jellyfin-server/MediaBrowser.Model/Activity/IActivityManager.cs

16 lines
411 B
C#
Raw Normal View History

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