jellyfin/MediaBrowser.Model/Activity/IActivityManager.cs

17 lines
441 B
C#
Raw Normal View History

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